public static enum FieldType.NumericType extends Enum<FieldType.NumericType>
Enum Constant and Description |
---|
DOUBLE
64-bit double numeric type
|
FLOAT
32-bit float numeric type
|
INT
32-bit integer numeric type
|
LONG
64-bit long numeric type
|
Modifier and Type | Method and Description |
---|---|
static FieldType.NumericType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldType.NumericType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldType.NumericType INT
public static final FieldType.NumericType LONG
public static final FieldType.NumericType FLOAT
public static final FieldType.NumericType DOUBLE
public static FieldType.NumericType[] values()
for (FieldType.NumericType c : FieldType.NumericType.values()) System.out.println(c);
public static FieldType.NumericType 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 © 2000-2013 Apache Software Foundation. All Rights Reserved.