public enum NumberFormat extends Enum<NumberFormat>
| Enum Constant and Description |
|---|
CARDINAL
Cardinal form of a number (one, two, three,...).
|
ORDINAL
Ordinal form of a number (first, second, third,...).
|
| Modifier and Type | Method and Description |
|---|---|
static NumberFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberFormat CARDINAL
public static final NumberFormat ORDINAL
public static NumberFormat[] values()
for (NumberFormat c : NumberFormat.values()) System.out.println(c);
public static NumberFormat 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 © 2013. All Rights Reserved.