|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<DfpField.RoundingMode> org.apache.commons.math3.dfp.DfpField.RoundingMode
public static enum DfpField.RoundingMode
Enumerate for rounding modes.
Enum Constant Summary | |
---|---|
ROUND_CEIL
Rounds towards positive infinity. |
|
ROUND_DOWN
Rounds toward zero (truncation). |
|
ROUND_FLOOR
Rounds towards negative infinity. |
|
ROUND_HALF_DOWN
Rounds towards nearest unless both are equidistant in which case it rounds toward zero. |
|
ROUND_HALF_EVEN
Rounds towards nearest unless both are equidistant in which case it rounds toward the even neighbor. |
|
ROUND_HALF_ODD
Rounds towards nearest unless both are equidistant in which case it rounds toward the odd neighbor. |
|
ROUND_HALF_UP
Rounds towards nearest unless both are equidistant in which case it rounds away from zero. |
|
ROUND_UP
Rounds away from zero if discarded digit is non-zero. |
Method Summary | |
---|---|
static DfpField.RoundingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DfpField.RoundingMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DfpField.RoundingMode ROUND_DOWN
public static final DfpField.RoundingMode ROUND_UP
public static final DfpField.RoundingMode ROUND_HALF_UP
public static final DfpField.RoundingMode ROUND_HALF_DOWN
public static final DfpField.RoundingMode ROUND_HALF_EVEN
public static final DfpField.RoundingMode ROUND_HALF_ODD
public static final DfpField.RoundingMode ROUND_CEIL
public static final DfpField.RoundingMode ROUND_FLOOR
Method Detail |
---|
public static DfpField.RoundingMode[] values()
for (DfpField.RoundingMode c : DfpField.RoundingMode.values()) System.out.println(c);
public static DfpField.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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |