public static enum RoundHelper.EDecimalType extends Enum<RoundHelper.EDecimalType>
| Enum Constant and Description |
|---|
EXP
Exponential number representation
|
FIX
Fixed number representation
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isExponential() |
boolean |
isFixed() |
static RoundHelper.EDecimalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoundHelper.EDecimalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoundHelper.EDecimalType FIX
public static final RoundHelper.EDecimalType EXP
public static RoundHelper.EDecimalType[] values()
for (RoundHelper.EDecimalType c : RoundHelper.EDecimalType.values()) System.out.println(c);
public static RoundHelper.EDecimalType 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 nullpublic boolean isFixed()
public boolean isExponential()
Copyright © 2014–2015 Philip Helger. All rights reserved.