public enum ValidateState extends java.lang.Enum<ValidateState>
Enum Constant and Description |
---|
ARGUMENT_ABSENCE
The parameter is missing.
|
ILLEGAL_ARGUMENT_VALUE
Wrong parameter value.
|
NOT_APPLICABLE
Not applicable.
|
SUCCESS
Succeed to verify.
|
Modifier and Type | Method and Description |
---|---|
static ValidateState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidateState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ValidateState SUCCESS
public static final ValidateState ILLEGAL_ARGUMENT_VALUE
public static final ValidateState ARGUMENT_ABSENCE
public static final ValidateState NOT_APPLICABLE
public static ValidateState[] values()
for (ValidateState c : ValidateState.values()) System.out.println(c);
public static ValidateState 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