Enum MysqlConnection.TechnologyType
- java.lang.Object
-
- java.lang.Enum<MysqlConnection.TechnologyType>
-
- com.oracle.bmc.databasemigration.model.MysqlConnection.TechnologyType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<MysqlConnection.TechnologyType>
- Enclosing class:
- MysqlConnection
public static enum MysqlConnection.TechnologyType extends Enum<MysqlConnection.TechnologyType> implements BmcEnum
The type of MySQL source or target connection.Example: OCI_MYSQL represents OCI MySQL HeatWave Database Service
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AmazonAuroraMysql
AmazonRdsMysql
AzureMysql
GoogleCloudSqlMysql
MysqlServer
OciMysql
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 MysqlConnection.TechnologyType
create(String key)
String
getValue()
static MysqlConnection.TechnologyType
valueOf(String name)
Returns the enum constant of this type with the specified name.static MysqlConnection.TechnologyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AmazonAuroraMysql
public static final MysqlConnection.TechnologyType AmazonAuroraMysql
-
AmazonRdsMysql
public static final MysqlConnection.TechnologyType AmazonRdsMysql
-
AzureMysql
public static final MysqlConnection.TechnologyType AzureMysql
-
GoogleCloudSqlMysql
public static final MysqlConnection.TechnologyType GoogleCloudSqlMysql
-
MysqlServer
public static final MysqlConnection.TechnologyType MysqlServer
-
OciMysql
public static final MysqlConnection.TechnologyType OciMysql
-
UnknownEnumValue
public static final MysqlConnection.TechnologyType 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 MysqlConnection.TechnologyType[] 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 (MysqlConnection.TechnologyType c : MysqlConnection.TechnologyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MysqlConnection.TechnologyType 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 MysqlConnection.TechnologyType create(String key)
-
-