Package io.debezium.connector.oracle
Enum OracleConnectorConfig.LogMiningDmlParser
- java.lang.Object
-
- java.lang.Enum<OracleConnectorConfig.LogMiningDmlParser>
-
- io.debezium.connector.oracle.OracleConnectorConfig.LogMiningDmlParser
-
- All Implemented Interfaces:
EnumeratedValue,Serializable,Comparable<OracleConnectorConfig.LogMiningDmlParser>
- Enclosing class:
- OracleConnectorConfig
public static enum OracleConnectorConfig.LogMiningDmlParser extends Enum<OracleConnectorConfig.LogMiningDmlParser> implements EnumeratedValue
-
-
Constructor Summary
Constructors Modifier Constructor Description privateLogMiningDmlParser(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static OracleConnectorConfig.LogMiningDmlParserparse(String value)static OracleConnectorConfig.LogMiningDmlParserparse(String value, String defaultValue)static OracleConnectorConfig.LogMiningDmlParservalueOf(String name)Returns the enum constant of this type with the specified name.static OracleConnectorConfig.LogMiningDmlParser[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEGACY
public static final OracleConnectorConfig.LogMiningDmlParser LEGACY
-
FAST
public static final OracleConnectorConfig.LogMiningDmlParser FAST
-
-
Field Detail
-
value
private final String value
-
-
Constructor Detail
-
LogMiningDmlParser
private LogMiningDmlParser(String value)
-
-
Method Detail
-
values
public static OracleConnectorConfig.LogMiningDmlParser[] 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 (OracleConnectorConfig.LogMiningDmlParser c : OracleConnectorConfig.LogMiningDmlParser.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OracleConnectorConfig.LogMiningDmlParser 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()
- Specified by:
getValuein interfaceEnumeratedValue
-
parse
public static OracleConnectorConfig.LogMiningDmlParser parse(String value)
-
parse
public static OracleConnectorConfig.LogMiningDmlParser parse(String value, String defaultValue)
-
-