Package com.oracle.bmc.mysql.model
Enum InitializationVariables.LowerCaseTableNames
- java.lang.Object
-
- java.lang.Enum<InitializationVariables.LowerCaseTableNames>
-
- com.oracle.bmc.mysql.model.InitializationVariables.LowerCaseTableNames
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<InitializationVariables.LowerCaseTableNames>
- Enclosing class:
- InitializationVariables
public static enum InitializationVariables.LowerCaseTableNames extends Enum<InitializationVariables.LowerCaseTableNames> implements BmcEnum
Represents the MySQL server system variable lower_case_table_names (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lower_case_table_names).lowerCaseTableNames controls case-sensitivity of tables and schema names and how they are stored in the DB System.
Valid values are: - CASE_SENSITIVE - (default) Table and schema name comparisons are case-sensitive and stored as specified. (lower_case_table_names=0) - CASE_INSENSITIVE_LOWERCASE - Table and schema name comparisons are not case-sensitive and stored in lowercase. (lower_case_table_names=1)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CaseInsensitiveLowercase
CaseSensitive
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InitializationVariables.LowerCaseTableNames
create(String key)
String
getValue()
static InitializationVariables.LowerCaseTableNames
valueOf(String name)
Returns the enum constant of this type with the specified name.static InitializationVariables.LowerCaseTableNames[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CaseSensitive
public static final InitializationVariables.LowerCaseTableNames CaseSensitive
-
CaseInsensitiveLowercase
public static final InitializationVariables.LowerCaseTableNames CaseInsensitiveLowercase
-
UnknownEnumValue
public static final InitializationVariables.LowerCaseTableNames UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static InitializationVariables.LowerCaseTableNames[] 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 (InitializationVariables.LowerCaseTableNames c : InitializationVariables.LowerCaseTableNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InitializationVariables.LowerCaseTableNames 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
-
create
public static InitializationVariables.LowerCaseTableNames create(String key)
-
-