Serializable
, Comparable<CollationAlternate>
public enum CollationAlternate extends Enum<CollationAlternate>
Enum Constant | Description |
---|---|
NON_IGNORABLE |
Non-ignorable
|
SHIFTED |
Shifted
|
Modifier and Type | Method | Description |
---|---|---|
static CollationAlternate |
fromString(String collationAlternate) |
Returns the CollationAlternate from the string value.
|
String |
getValue() |
|
static CollationAlternate |
valueOf(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(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 CollationAlternate fromString(String collationAlternate)
collationAlternate
- the string value.