public static enum NumericField.DataType extends Enum<NumericField.DataType>
NumericField
.Modifier and Type | Method and Description |
---|---|
static NumericField.DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericField.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericField.DataType INT
public static final NumericField.DataType LONG
public static final NumericField.DataType FLOAT
public static final NumericField.DataType DOUBLE
public static NumericField.DataType[] values()
for (NumericField.DataType c : NumericField.DataType.values()) System.out.println(c);
public static NumericField.DataType 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 null