public static enum Collation.Strength extends java.lang.Enum<Collation.Strength>
| Enum Constant and Description |
|---|
IDENTICAL |
PRIMARY |
QUATERNARY |
SECONDARY |
TERTIARY |
| Modifier and Type | Method and Description |
|---|---|
static Collation.Strength |
fromInt(int i) |
int |
value() |
static Collation.Strength |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Collation.Strength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Collation.Strength PRIMARY
public static final Collation.Strength SECONDARY
public static final Collation.Strength TERTIARY
public static final Collation.Strength QUATERNARY
public static final Collation.Strength IDENTICAL
public static Collation.Strength[] values()
for (Collation.Strength c : Collation.Strength.values()) System.out.println(c);
public static Collation.Strength 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 int value()
public static Collation.Strength fromInt(int i)