public enum ValidatorType extends Enum<ValidatorType>
| Enum Constant and Description |
|---|
EqualOrGreaterThan |
EqualOrGreaterThanInteger |
EqualOrLessThan |
GreaterThan |
GreaterThanInteger |
LessThan |
NotEqual |
NotEqualInteger |
RangeInteger |
RegExp |
Required |
| Modifier and Type | Method and Description |
|---|---|
static ValidatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidatorType GreaterThan
public static final ValidatorType EqualOrGreaterThan
public static final ValidatorType LessThan
public static final ValidatorType EqualOrLessThan
public static final ValidatorType NotEqual
public static final ValidatorType GreaterThanInteger
public static final ValidatorType EqualOrGreaterThanInteger
public static final ValidatorType NotEqualInteger
public static final ValidatorType RangeInteger
public static final ValidatorType RegExp
public static final ValidatorType Required
public static ValidatorType[] values()
for (ValidatorType c : ValidatorType.values()) System.out.println(c);
public static ValidatorType 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 © 2015. All Rights Reserved.