public static enum CurrencyStyle.SymbolPosition extends Enum<CurrencyStyle.SymbolPosition>
| Enum Constant and Description |
|---|
BEGIN
the symbol is before the value
|
END
the symbol is after the value
|
| Modifier and Type | Method and Description |
|---|---|
static CurrencyStyle.SymbolPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CurrencyStyle.SymbolPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurrencyStyle.SymbolPosition BEGIN
public static final CurrencyStyle.SymbolPosition END
public static CurrencyStyle.SymbolPosition[] values()
for (CurrencyStyle.SymbolPosition c : CurrencyStyle.SymbolPosition.values()) System.out.println(c);
public static CurrencyStyle.SymbolPosition 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 © 2016–2021. All rights reserved.