public static enum Collate.CollatingSequence extends java.lang.Enum<Collate.CollatingSequence>
| Enum Constant and Description |
|---|
BINARY
Compares string data using memcmp(), regardless of text encoding.
|
NOCASE
The same as binary, except the 26 upper case characters of ASCII are folded to their lower case equivalents
before the comparison is performed.
|
RTRIM
The same as binary, except that trailing space characters are ignored.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
keyword() |
static Collate.CollatingSequence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Collate.CollatingSequence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Collate.CollatingSequence BINARY
public static final Collate.CollatingSequence NOCASE
public static final Collate.CollatingSequence RTRIM
public static Collate.CollatingSequence[] values()
for (Collate.CollatingSequence c : Collate.CollatingSequence.values()) System.out.println(c);
public static Collate.CollatingSequence 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 java.lang.String keyword()