public enum ConvertBigDecimal extends Enum<ConvertBigDecimal>
Enum Constant and Description |
---|
BIGDECIMAL
Conversion from BigDecimal.
|
BIGDECIMAL_EXTENDS
COnversion from BigDecimal, extended.
|
BIGINTEGER
Conversion from BigInteger.
|
DEFAULT
Default conversion based on String, if everything else failed.
|
FLUCTUAGE
Conversion for floating point numbers.
|
INTEGER
Conversion from integral numeric types, short, int, long.
|
NUMBERVALUE
Conversion from NumberValue.
|
Modifier and Type | Method and Description |
---|---|
static ConvertBigDecimal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConvertBigDecimal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConvertBigDecimal INTEGER
public static final ConvertBigDecimal FLUCTUAGE
public static final ConvertBigDecimal BIGINTEGER
public static final ConvertBigDecimal NUMBERVALUE
public static final ConvertBigDecimal BIGDECIMAL
public static final ConvertBigDecimal BIGDECIMAL_EXTENDS
public static final ConvertBigDecimal DEFAULT
public static ConvertBigDecimal[] values()
for (ConvertBigDecimal c : ConvertBigDecimal.values()) System.out.println(c);
public static ConvertBigDecimal 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 © 2012-2015 JavaMoney. All Rights Reserved.