public enum NumericFlag extends java.lang.Enum<NumericFlag>
| Enum Constant | Description |
|---|---|
LOCALE_GROUPING_SEPARATORS |
|
NEGATIVE_PARENTHESES |
|
SIGN |
|
SPACE_POSITIVE |
|
ZERO_PAD |
| Modifier and Type | Method | Description |
|---|---|---|
static NumericFlag |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static NumericFlag[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericFlag SIGN
public static final NumericFlag SPACE_POSITIVE
public static final NumericFlag ZERO_PAD
public static final NumericFlag LOCALE_GROUPING_SEPARATORS
public static final NumericFlag NEGATIVE_PARENTHESES
public static NumericFlag[] values()
for (NumericFlag c : NumericFlag.values()) System.out.println(c);
public static NumericFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018 JBoss, a division of Red Hat, Inc.