public enum RoundingMode extends Enum<RoundingMode>
| Enum Constant and Description |
|---|
DOWN
Round down.
|
HALF_EVEN
Round to nearest even number.
|
UP
Round up.
|
| Modifier and Type | Method and Description |
|---|---|
static RoundingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoundingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoundingMode HALF_EVEN
public static final RoundingMode UP
public static final RoundingMode DOWN
public static RoundingMode[] values()
for (RoundingMode c : RoundingMode.values()) System.out.println(c);
public static RoundingMode 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 null