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