public enum CollationAlternate extends java.lang.Enum<CollationAlternate>
Enum Constant and Description |
---|
NON_IGNORABLE
Non-ignorable
|
SHIFTED
Shifted
|
Modifier and Type | Method and Description |
---|---|
static CollationAlternate |
fromString(java.lang.String collationAlternate)
Returns the CollationAlternate from the string value.
|
java.lang.String |
getValue() |
static CollationAlternate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CollationAlternate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollationAlternate NON_IGNORABLE
Spaces and punctuation are considered base characters
public static final CollationAlternate SHIFTED
Spaces and punctuation are not considered base characters, and are only distinguished when the collation strength is > 3
CollationMaxVariable
public static CollationAlternate[] values()
for (CollationAlternate c : CollationAlternate.values()) System.out.println(c);
public static CollationAlternate 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 CollationAlternate fromString(java.lang.String collationAlternate)
collationAlternate
- the string value.