public static enum StringUtil.CaseClassification extends java.lang.Enum<StringUtil.CaseClassification>
| Enum Constant and Description |
|---|
ALL_LOWER |
ALL_UPPER |
PRESERVE_INPUT |
PRESERVE_LOOKUP_FILE |
| Modifier and Type | Method and Description |
|---|---|
static StringUtil.CaseClassification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringUtil.CaseClassification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringUtil.CaseClassification PRESERVE_LOOKUP_FILE
public static final StringUtil.CaseClassification PRESERVE_INPUT
public static final StringUtil.CaseClassification ALL_LOWER
public static final StringUtil.CaseClassification ALL_UPPER
public static StringUtil.CaseClassification[] values()
for (StringUtil.CaseClassification c : StringUtil.CaseClassification.values()) System.out.println(c);
public static StringUtil.CaseClassification 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