public enum CollationMaxVariable extends java.lang.Enum<CollationMaxVariable>
CollationMaxVariable
controls which characters are affected by CollationAlternate.SHIFTED
.
CollationAlternate.SHIFTED
Modifier and Type | Method and Description |
---|---|
static CollationMaxVariable |
fromString(java.lang.String collationMaxVariable)
Returns the CollationMaxVariable from the string value.
|
java.lang.String |
getValue() |
static CollationMaxVariable |
valueOf(java.lang.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(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 CollationMaxVariable fromString(java.lang.String collationMaxVariable)
collationMaxVariable
- the string value.