public enum DecimalSymbol extends Enum<DecimalSymbol>
Enum Constant and Description |
---|
COMMA |
DOLLAR_SYMBOL |
PERIOD |
SPACE |
Modifier and Type | Method and Description |
---|---|
static DecimalSymbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecimalSymbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecimalSymbol SPACE
public static final DecimalSymbol PERIOD
public static final DecimalSymbol COMMA
public static final DecimalSymbol DOLLAR_SYMBOL
public static DecimalSymbol[] values()
for (DecimalSymbol c : DecimalSymbol.values()) System.out.println(c);
public static DecimalSymbol 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 nullCopyright © 2010–2016. All rights reserved.