Package org.openstack4j.model.trove
Enum DBCollation
- java.lang.Object
-
- java.lang.Enum<DBCollation>
-
- org.openstack4j.model.trove.DBCollation
-
- All Implemented Interfaces:
Serializable,Comparable<DBCollation>
public enum DBCollation extends Enum<DBCollation>
Created by sumit gandhi on 9/3/2016.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNRECOGNIZEDUTF16_GENERAL_CIUTF32_GENERAL_CIUTF8_GENERAL_CI
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringvalue()static DBCollationvalue(String paramType)static DBCollationvalueOf(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.
-
-
-
Enum Constant Detail
-
UTF8_GENERAL_CI
public static final DBCollation UTF8_GENERAL_CI
-
UTF16_GENERAL_CI
public static final DBCollation UTF16_GENERAL_CI
-
UTF32_GENERAL_CI
public static final DBCollation UTF32_GENERAL_CI
-
UNRECOGNIZED
public static final DBCollation UNRECOGNIZED
-
-
Method Detail
-
values
public static DBCollation[] 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 (DBCollation c : DBCollation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DBCollation 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 DBCollation value(String paramType)
-
value
public String value()
-
-