Package org.openstack4j.model.trove
Enum DBCharacterSet
- java.lang.Object
-
- java.lang.Enum<DBCharacterSet>
-
- org.openstack4j.model.trove.DBCharacterSet
-
- All Implemented Interfaces:
Serializable,Comparable<DBCharacterSet>
public enum DBCharacterSet extends Enum<DBCharacterSet>
Created by sumit gandhi on 9/3/2016.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNRECOGNIZEDUTF16UTF32UTF8
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringvalue()static DBCharacterSetvalue(String paramType)static DBCharacterSetvalueOf(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.
-
-
-
Enum Constant Detail
-
UTF8
public static final DBCharacterSet UTF8
-
UTF16
public static final DBCharacterSet UTF16
-
UTF32
public static final DBCharacterSet UTF32
-
UNRECOGNIZED
public static final DBCharacterSet UNRECOGNIZED
-
-
Method Detail
-
values
public static DBCharacterSet[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DBCharacterSet c : DBCharacterSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DBCharacterSet valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public static DBCharacterSet value(String paramType)
-
value
public String value()
-
-