Package com.exoscale.sdk.model
Enum JsonSchemaMysql.InternalTmpMemStorageEngineEnum
- java.lang.Object
-
- java.lang.Enum<JsonSchemaMysql.InternalTmpMemStorageEngineEnum>
-
- com.exoscale.sdk.model.JsonSchemaMysql.InternalTmpMemStorageEngineEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<JsonSchemaMysql.InternalTmpMemStorageEngineEnum>
- Enclosing class:
- JsonSchemaMysql
public static enum JsonSchemaMysql.InternalTmpMemStorageEngineEnum extends Enum<JsonSchemaMysql.InternalTmpMemStorageEngineEnum>
The storage engine for in-memory internal temporary tables.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonSchemaMysql.InternalTmpMemStorageEngineEnum
fromValue(String value)
String
getValue()
String
toString()
static JsonSchemaMysql.InternalTmpMemStorageEngineEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static JsonSchemaMysql.InternalTmpMemStorageEngineEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEMPTABLE
public static final JsonSchemaMysql.InternalTmpMemStorageEngineEnum TEMPTABLE
-
MEMORY
public static final JsonSchemaMysql.InternalTmpMemStorageEngineEnum MEMORY
-
-
Method Detail
-
values
public static JsonSchemaMysql.InternalTmpMemStorageEngineEnum[] 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 (JsonSchemaMysql.InternalTmpMemStorageEngineEnum c : JsonSchemaMysql.InternalTmpMemStorageEngineEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsonSchemaMysql.InternalTmpMemStorageEngineEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toString
in classEnum<JsonSchemaMysql.InternalTmpMemStorageEngineEnum>
-
fromValue
public static JsonSchemaMysql.InternalTmpMemStorageEngineEnum fromValue(String value)
-
-