|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CollatorEnum>
com.bigdata.btree.keys.CollatorEnum
public enum CollatorEnum
Type-safe enumeration of collators that may be configured.
| Enum Constant Summary | |
|---|---|
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. |
|
ICU4JNI
A JNI plugin for ICU (native code for faster generation of sort keys). |
|
JDK
The JDK bundles support for generating Unicode sort keys, but that support does NOT include compressed sort keys. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CollatorEnum JDK
public static final CollatorEnum ICU
public static final CollatorEnum ICU4JNI
public static final CollatorEnum ASCII
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||