public static enum IValidationChecker.ValidationResult extends java.lang.Enum<IValidationChecker.ValidationResult>
| Enum Constant and Description |
|---|
DUPLICATE
The duplicate.
|
IDENTICAL
The identical.
|
INVALID
The invalid.
|
VALID
The valid.
|
| Modifier and Type | Method and Description |
|---|---|
static IValidationChecker.ValidationResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IValidationChecker.ValidationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IValidationChecker.ValidationResult DUPLICATE
public static final IValidationChecker.ValidationResult IDENTICAL
public static final IValidationChecker.ValidationResult INVALID
public static final IValidationChecker.ValidationResult VALID
public static IValidationChecker.ValidationResult[] values()
for (IValidationChecker.ValidationResult c : IValidationChecker.ValidationResult.values()) System.out.println(c);
public static IValidationChecker.ValidationResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null