public static enum Case.Type extends Enum<Case.Type>
| Enum Constant and Description |
|---|
Keep
Keep the original shape
|
Lower
All Lowercase
|
Upper
All Uppercase
|
| Modifier and Type | Method and Description |
|---|---|
static Case.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Case.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Case.Type Upper
public static final Case.Type Lower
public static final Case.Type Keep
public static Case.Type[] values()
for (Case.Type c : Case.Type.values()) System.out.println(c);
public static Case.Type 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 © 2024. All rights reserved.