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