public enum FieldFormatText extends Enum<FieldFormatText>
Modifier and Type | Method and Description |
---|---|
static FieldFormatText |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldFormatText[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldFormatText Caps
public static final FieldFormatText FirstCap
public static final FieldFormatText Lower
public static final FieldFormatText Upper
public static FieldFormatText[] values()
for (FieldFormatText c : FieldFormatText.values()) System.out.println(c);
public static FieldFormatText 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