Serializable
, Comparable<CollationCaseFirst>
public enum CollationCaseFirst extends Enum<CollationCaseFirst>
Enum Constant | Description |
---|---|
LOWER |
Lowercase first
|
OFF |
Off
|
UPPER |
Uppercase first
|
Modifier and Type | Method | Description |
---|---|---|
static CollationCaseFirst |
fromString(String collationCaseFirst) |
Returns the CollationCaseFirst from the string value.
|
String |
getValue() |
|
static CollationCaseFirst |
valueOf(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(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 String getValue()
public static CollationCaseFirst fromString(String collationCaseFirst)
collationCaseFirst
- the string value.