public enum NumericType extends Enum<NumericType>
Enum Constant and Description |
---|
OP_DECIMAL |
OP_DOUBLE |
OP_FLOAT |
OP_INTEGER |
Modifier and Type | Method and Description |
---|---|
static NumericType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericType OP_INTEGER
public static final NumericType OP_DECIMAL
public static final NumericType OP_DOUBLE
public static final NumericType OP_FLOAT
public static NumericType[] values()
for (NumericType c : NumericType.values()) System.out.println(c);
public static 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 nullLicenced under the Apache License, Version 2.0