public static enum OracleConnectorConfig.ConnectorAdapter extends Enum<OracleConnectorConfig.ConnectorAdapter> implements io.debezium.config.EnumeratedValue
| Enum Constant and Description |
|---|
LOG_MINER
This is based on LogMiner utility.
|
XSTREAM
This is based on XStream API.
|
| Modifier and Type | Method and Description |
|---|---|
abstract String |
getConnectionUrl() |
String |
getValue() |
static OracleConnectorConfig.ConnectorAdapter |
parse(String value)
Determine if the supplied value is one of the predefined options.
|
static OracleConnectorConfig.ConnectorAdapter |
parse(String value,
String defaultValue) |
static OracleConnectorConfig.ConnectorAdapter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OracleConnectorConfig.ConnectorAdapter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleConnectorConfig.ConnectorAdapter XSTREAM
public static final OracleConnectorConfig.ConnectorAdapter LOG_MINER
private final String value
public static OracleConnectorConfig.ConnectorAdapter[] values()
for (OracleConnectorConfig.ConnectorAdapter c : OracleConnectorConfig.ConnectorAdapter.values()) System.out.println(c);
public static OracleConnectorConfig.ConnectorAdapter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic abstract String getConnectionUrl()
public String getValue()
getValue in interface io.debezium.config.EnumeratedValuepublic static OracleConnectorConfig.ConnectorAdapter parse(String value)
value - the configuration property value; may not be nullpublic static OracleConnectorConfig.ConnectorAdapter parse(String value, String defaultValue)
Copyright © 2021 JBoss by Red Hat. All rights reserved.