Package io.debezium.connector.mysql
Enum MySqlConnectorConfig.ConnectorAdapterMode
java.lang.Object
java.lang.Enum<MySqlConnectorConfig.ConnectorAdapterMode>
io.debezium.connector.mysql.MySqlConnectorConfig.ConnectorAdapterMode
- All Implemented Interfaces:
EnumeratedValue,Serializable,Comparable<MySqlConnectorConfig.ConnectorAdapterMode>
- Enclosing class:
- MySqlConnectorConfig
public static enum MySqlConnectorConfig.ConnectorAdapterMode
extends Enum<MySqlConnectorConfig.ConnectorAdapterMode>
implements EnumeratedValue
Set of predefined connector adapter modes.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExpects the target database to be MariaDB using the MariaDB driver.Expects the target database to be MariaDB but uses the MySQL driver.Expects the target database to be MySQL using the MySQL driver. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract ConnectorAdaptergetAdapter(MySqlConnectorConfig connectorConfig) getValue()Determine if the supplied value is one of the predefined options.Determine if the supplied value is one of the predefined options.Returns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MYSQL
Expects the target database to be MySQL using the MySQL driver. This should also be used if the target database is MySQL compliant but isn't MariaDB. -
MARIADB
Expects the target database to be MariaDB using the MariaDB driver. -
MARIADB_HYBRID
Expects the target database to be MariaDB but uses the MySQL driver.
-
-
Field Details
-
value
-
-
Constructor Details
-
ConnectorAdapterMode
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getAdapter
-
getValue
- Specified by:
getValuein interfaceEnumeratedValue
-
parse
Determine if the supplied value is one of the predefined options.- Parameters:
value- the configuration property value; may not be null- Returns:
- the matching option, or null if no match is found
-
parse
Determine if the supplied value is one of the predefined options.- Parameters:
value- the configuration property value; may not be nulldefaultValue- the default value; may be null- Returns:
- the matching option, or null if no match is found and the non-null default is invalid
-