public enum DBCollation extends Enum<DBCollation>
| Enum Constant and Description |
|---|
UNRECOGNIZED |
UTF16_GENERAL_CI |
UTF32_GENERAL_CI |
UTF8_GENERAL_CI |
| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static DBCollation |
value(String paramType) |
static DBCollation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBCollation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBCollation UTF8_GENERAL_CI
public static final DBCollation UTF16_GENERAL_CI
public static final DBCollation UTF32_GENERAL_CI
public static final DBCollation UNRECOGNIZED
public static DBCollation[] values()
for (DBCollation c : DBCollation.values()) System.out.println(c);
public static DBCollation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static DBCollation value(String paramType)
Copyright © 2017. All rights reserved.