public enum DBCharacterSet extends Enum<DBCharacterSet>
Enum Constant and Description |
---|
UNRECOGNIZED |
UTF16 |
UTF32 |
UTF8 |
Modifier and Type | Method and Description |
---|---|
String |
value() |
static DBCharacterSet |
value(String paramType) |
static DBCharacterSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBCharacterSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBCharacterSet UTF8
public static final DBCharacterSet UTF16
public static final DBCharacterSet UTF32
public static final DBCharacterSet UNRECOGNIZED
public static DBCharacterSet[] values()
for (DBCharacterSet c : DBCharacterSet.values()) System.out.println(c);
public static DBCharacterSet 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 DBCharacterSet value(String paramType)
Copyright © 2017. All rights reserved.