Serializable
, Comparable<CollationMaxVariable>
public enum CollationMaxVariable extends Enum<CollationMaxVariable>
CollationMaxVariable
controls which characters are affected by CollationAlternate.SHIFTED
.
CollationAlternate.SHIFTED
Modifier and Type | Method | Description |
---|---|---|
static CollationMaxVariable |
fromString(String collationMaxVariable) |
Returns the CollationMaxVariable from the string value.
|
String |
getValue() |
|
static CollationMaxVariable |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static CollationMaxVariable[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollationMaxVariable PUNCT
Both punctuation and spaces are affected.
public static final CollationMaxVariable SPACE
Only spaces are affected.
public static CollationMaxVariable[] values()
for (CollationMaxVariable c : CollationMaxVariable.values()) System.out.println(c);
public static CollationMaxVariable 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 CollationMaxVariable fromString(String collationMaxVariable)
collationMaxVariable
- the string value.