public static enum RenameForm.CASEHANDLING extends java.lang.Enum<RenameForm.CASEHANDLING>
| Enum Constant and Description |
|---|
LOWER
Transform to all lower case.
|
PRESERVE
Preserve case.
|
UPPER
Transform to all upper case.
|
| Modifier and Type | Method and Description |
|---|---|
static RenameForm.CASEHANDLING |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenameForm.CASEHANDLING[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenameForm.CASEHANDLING UPPER
public static final RenameForm.CASEHANDLING LOWER
public static final RenameForm.CASEHANDLING PRESERVE
public static RenameForm.CASEHANDLING[] values()
for (RenameForm.CASEHANDLING c : RenameForm.CASEHANDLING.values()) System.out.println(c);
public static RenameForm.CASEHANDLING 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