public enum ValidationType extends Enum<ValidationType>
ValidationType class.
| Enum Constant and Description |
|---|
ENUM |
MAXIMUM |
MAXLENGTH |
MINIMUM |
MINLENGTH |
PATTERN |
| Modifier and Type | Method and Description |
|---|---|
static ValidationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationType ENUM
public static final ValidationType PATTERN
public static final ValidationType MINLENGTH
public static final ValidationType MAXLENGTH
public static final ValidationType MINIMUM
public static final ValidationType MAXIMUM
public static ValidationType[] values()
for (ValidationType c : ValidationType.values()) System.out.println(c);
public static ValidationType 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 Mulesoft. All rights reserved.