Package org.apache.beam.io.debezium
Enum Class Connectors
- All Implemented Interfaces:
Serializable
,Comparable<Connectors>
,Constable
Enumeration of debezium connectors.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic Connectors
Returns a connector class corresponding to the given connector name.Class connector to debezium.getName()
The name of this connector class.static Connectors
Returns the enum constant of this class with the specified name.static Connectors[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MYSQL
-
POSTGRES
-
SQLSERVER
-
ORACLE
-
DB2
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
The name of this connector class. -
getConnector
Class connector to debezium. -
fromName
Returns a connector class corresponding to the given connector name.- Parameters:
connectorName
- The name of the connector. Ex.: MySQL- Returns:
- Connector enum representing the given connector name.
-