public enum ValidatorTypes extends Enum<ValidatorTypes>
| Enum Constant and Description |
|---|
DATE_GE |
DATE_GT |
DATE_LE |
DATE_LT |
EXACT_MATCH |
FUNCTION |
INLINE |
RANGE |
REGEXP |
| Modifier and Type | Method and Description |
|---|---|
static ValidatorTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidatorTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidatorTypes EXACT_MATCH
public static final ValidatorTypes RANGE
public static final ValidatorTypes REGEXP
public static final ValidatorTypes FUNCTION
public static final ValidatorTypes INLINE
public static final ValidatorTypes DATE_GE
public static final ValidatorTypes DATE_GT
public static final ValidatorTypes DATE_LE
public static final ValidatorTypes DATE_LT
public static ValidatorTypes[] values()
for (ValidatorTypes c : ValidatorTypes.values()) System.out.println(c);
public static ValidatorTypes 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 © 2016. All rights reserved.