public enum FieldTypeCase extends java.lang.Enum<FieldTypeCase>
| Enum Constant and Description |
|---|
Capitalize |
Lowercase |
Uppercase |
| Modifier and Type | Method and Description |
|---|---|
static FieldTypeCase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldTypeCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldTypeCase Lowercase
public static final FieldTypeCase Uppercase
public static final FieldTypeCase Capitalize
public static FieldTypeCase[] values()
for (FieldTypeCase c : FieldTypeCase.values()) System.out.println(c);
public static FieldTypeCase valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null