public static enum CaseChangeEntryHandler.CaseChange extends java.lang.Enum<CaseChangeEntryHandler.CaseChange>
| Enum Constant and Description |
|---|
LOWER
lower case.
|
NONE
no case change.
|
UPPER
upper case.
|
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
perform(CaseChangeEntryHandler.CaseChange cc,
java.lang.String string)
This changes the supplied string based on the supplied case change.
|
static CaseChangeEntryHandler.CaseChange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CaseChangeEntryHandler.CaseChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaseChangeEntryHandler.CaseChange NONE
public static final CaseChangeEntryHandler.CaseChange LOWER
public static final CaseChangeEntryHandler.CaseChange UPPER
public static CaseChangeEntryHandler.CaseChange[] values()
for (CaseChangeEntryHandler.CaseChange c : CaseChangeEntryHandler.CaseChange.values()) System.out.println(c);
public static CaseChangeEntryHandler.CaseChange 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 nullpublic static java.lang.String perform(CaseChangeEntryHandler.CaseChange cc, java.lang.String string)
cc - case change to performstring - to modify