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