public enum BuiltInCollations extends java.lang.Enum<BuiltInCollations>
| Modifier and Type | Method and Description |
|---|---|
boolean |
equalsName(java.lang.String sqlText) |
java.lang.String |
toString() |
static BuiltInCollations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BuiltInCollations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltInCollations BINARY
public static final BuiltInCollations NOCASE
public static final BuiltInCollations RTRIM
public static BuiltInCollations[] values()
for (BuiltInCollations c : BuiltInCollations.values()) System.out.println(c);
public static BuiltInCollations 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 boolean equalsName(java.lang.String sqlText)
public java.lang.String toString()
toString in class java.lang.Enum<BuiltInCollations>