public static enum IndexNumericFieldData.NumericType extends java.lang.Enum<IndexNumericFieldData.NumericType>
Enum Constant and Description |
---|
BOOLEAN |
BYTE |
DOUBLE |
FLOAT |
HALF_FLOAT |
INT |
LONG |
SHORT |
Modifier and Type | Method and Description |
---|---|
boolean |
isFloatingPoint() |
static IndexNumericFieldData.NumericType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexNumericFieldData.NumericType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexNumericFieldData.NumericType BOOLEAN
public static final IndexNumericFieldData.NumericType BYTE
public static final IndexNumericFieldData.NumericType SHORT
public static final IndexNumericFieldData.NumericType INT
public static final IndexNumericFieldData.NumericType LONG
public static final IndexNumericFieldData.NumericType HALF_FLOAT
public static final IndexNumericFieldData.NumericType FLOAT
public static final IndexNumericFieldData.NumericType DOUBLE
public static IndexNumericFieldData.NumericType[] values()
for (IndexNumericFieldData.NumericType c : IndexNumericFieldData.NumericType.values()) System.out.println(c);
public static IndexNumericFieldData.NumericType 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 nullpublic final boolean isFloatingPoint()