public static enum MonetaryAmountFormat.CurrencyStyle extends Enum<MonetaryAmountFormat.CurrencyStyle>
Enum Constant and Description |
---|
CODE |
NAME |
NUMERIC_CODE |
SYMBOL |
Modifier and Type | Method and Description |
---|---|
static MonetaryAmountFormat.CurrencyStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MonetaryAmountFormat.CurrencyStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonetaryAmountFormat.CurrencyStyle CODE
public static final MonetaryAmountFormat.CurrencyStyle NAME
public static final MonetaryAmountFormat.CurrencyStyle NUMERIC_CODE
public static final MonetaryAmountFormat.CurrencyStyle SYMBOL
public static MonetaryAmountFormat.CurrencyStyle[] values()
for (MonetaryAmountFormat.CurrencyStyle c : MonetaryAmountFormat.CurrencyStyle.values()) System.out.println(c);
public static MonetaryAmountFormat.CurrencyStyle 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 © 2012–2013 JSR 354 - Expert Group. All rights reserved.