public enum FieldCheckResult extends Enum<FieldCheckResult>
| Modifier and Type | Method and Description |
|---|---|
static FieldCheckResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldCheckResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldCheckResult SKIP
public static final FieldCheckResult PASS
public static final FieldCheckResult FAILED
public static FieldCheckResult[] values()
for (FieldCheckResult c : FieldCheckResult.values()) System.out.println(c);
public static FieldCheckResult valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.