public static enum NumberField.NumberType extends java.lang.Enum<NumberField.NumberType>
| Modifier and Type | Method and Description |
|---|---|
static NumberField.NumberType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NumberField.NumberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberField.NumberType Normal
public static final NumberField.NumberType Integer
public static final NumberField.NumberType Percent
public static final NumberField.NumberType Currency
public static NumberField.NumberType[] values()
for (NumberField.NumberType c : NumberField.NumberType.values()) System.out.println(c);
public static NumberField.NumberType 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