|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<StrengthEnum>
com.bigdata.btree.keys.StrengthEnum
public enum StrengthEnum
Type safe enumeration for the strength.
Note: ICU and the JDK use different integer constants for the #IDENTICAL strength
| Enum Constant Summary | |
|---|---|
Identical
See Collator.IDENTICAL. |
|
Primary
See Collator.PRIMARY. |
|
Quaternary
Note: this option is NOT supported by the JDK. |
|
Secondary
See Collator.SECONDARY. |
|
Tertiary
See Collator.TERTIARY. |
|
| Method Summary | |
|---|---|
static StrengthEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static StrengthEnum[] |
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 StrengthEnum Primary
Collator.PRIMARY.
public static final StrengthEnum Secondary
Collator.SECONDARY.
public static final StrengthEnum Tertiary
Collator.TERTIARY.
public static final StrengthEnum Quaternary
public static final StrengthEnum Identical
Collator.IDENTICAL.
| Method Detail |
|---|
public static StrengthEnum[] values()
for (StrengthEnum c : StrengthEnum.values()) System.out.println(c);
public static StrengthEnum 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 | |||||||||