public enum CollatorEnum extends Enum<CollatorEnum>
Enum Constant and Description |
---|
ASCII
A configuration option to force the interpretation of Unicode text as
ASCII (only the low byte is considered).
|
ICU
ICU is the basis for the Unicode support in the JDK and also supports
compressed sort keys, which can be a big savings in an index.
|
JDK
The JDK bundles support for generating Unicode sort keys, but that
support does NOT include compressed sort keys and embeds
nul
bytes into its Unicode sort keys. |
Modifier and Type | Method and Description |
---|---|
static CollatorEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollatorEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollatorEnum JDK
nul
bytes into its Unicode sort keys.public static final CollatorEnum ICU
public static final CollatorEnum ASCII
public static CollatorEnum[] values()
for (CollatorEnum c : CollatorEnum.values()) System.out.println(c);
public static CollatorEnum 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 nullCopyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.