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