public enum InputMaskType extends Enum<InputMaskType>
| Enum Constant and Description |
|---|
ALPHA_NUMERIC |
CURRENCY_BY_DATA |
CURRENCY_GERMAN |
DATE |
PHONE |
| Modifier and Type | Method and Description |
|---|---|
static InputMaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputMaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputMaskType PHONE
public static final InputMaskType CURRENCY_BY_DATA
public static final InputMaskType CURRENCY_GERMAN
public static final InputMaskType DATE
public static final InputMaskType ALPHA_NUMERIC
public final String label
public static InputMaskType[] values()
for (InputMaskType c : InputMaskType.values()) System.out.println(c);
public static InputMaskType 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 © 2018. All rights reserved.