public static enum CaseChangeEntryHandler.CaseChange extends Enum<CaseChangeEntryHandler.CaseChange>
Enum Constant and Description |
---|
LOWER
lower case.
|
NONE
no case change.
|
UPPER
upper case.
|
Modifier and Type | Method and Description |
---|---|
static String |
perform(CaseChangeEntryHandler.CaseChange cc,
String string)
This changes the supplied string based on the supplied case change.
|
static CaseChangeEntryHandler.CaseChange |
valueOf(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(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 String perform(CaseChangeEntryHandler.CaseChange cc, String string)
cc
- case change to performstring
- to modifyCopyright © 2003-2019 Virginia Tech. All Rights Reserved.