public enum CollationCaseFirst extends java.lang.Enum<CollationCaseFirst>
Enum Constant and Description |
---|
LOWER
Lowercase first
|
OFF
Off
|
UPPER
Uppercase first
|
Modifier and Type | Method and Description |
---|---|
static CollationCaseFirst |
fromString(java.lang.String collationCaseFirst)
Returns the CollationCaseFirst from the string value.
|
java.lang.String |
getValue() |
static CollationCaseFirst |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CollationCaseFirst[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollationCaseFirst UPPER
public static final CollationCaseFirst LOWER
public static final CollationCaseFirst OFF
public static CollationCaseFirst[] values()
for (CollationCaseFirst c : CollationCaseFirst.values()) System.out.println(c);
public static CollationCaseFirst 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 java.lang.String getValue()
public static CollationCaseFirst fromString(java.lang.String collationCaseFirst)
collationCaseFirst
- the string value.