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