|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<GroupingStyle>
org.joda.money.format.GroupingStyle
public enum GroupingStyle
Defines the style for numeric grouping.
This provides control over the grouping of numbers in formatting.
This class is immutable and thread-safe.
| Enum Constant Summary | |
|---|---|
BEFORE_DECIMAL_POINT
Grouping occurs, but only before the decimal point. |
|
FULL
No grouping occurs. |
|
NONE
No grouping occurs. |
|
| Method Summary | |
|---|---|
static GroupingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GroupingStyle[] |
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 GroupingStyle NONE
public static final GroupingStyle FULL
public static final GroupingStyle BEFORE_DECIMAL_POINT
| Method Detail |
|---|
public static GroupingStyle[] values()
for (GroupingStyle c : GroupingStyle.values()) System.out.println(c);
public static GroupingStyle 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 | |||||||||