public enum FieldFormatNumeric extends Enum<FieldFormatNumeric>
Enum Constant and Description |
---|
Arabic |
CardText |
DollarText |
Ordinal |
OrdText |
roman |
Roman |
Modifier and Type | Method and Description |
---|---|
static FieldFormatNumeric |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldFormatNumeric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldFormatNumeric Arabic
public static final FieldFormatNumeric CardText
public static final FieldFormatNumeric DollarText
public static final FieldFormatNumeric Ordinal
public static final FieldFormatNumeric OrdText
public static final FieldFormatNumeric Roman
public static final FieldFormatNumeric roman
public static FieldFormatNumeric[] values()
for (FieldFormatNumeric c : FieldFormatNumeric.values()) System.out.println(c);
public static FieldFormatNumeric 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 null
jataylor@hairyfatguy.com