Package io.debezium.connector.oracle
Enum OracleConnectorConfig.LogMiningBufferType
- java.lang.Object
-
- java.lang.Enum<OracleConnectorConfig.LogMiningBufferType>
-
- io.debezium.connector.oracle.OracleConnectorConfig.LogMiningBufferType
-
- All Implemented Interfaces:
EnumeratedValue,Serializable,Comparable<OracleConnectorConfig.LogMiningBufferType>
- Enclosing class:
- OracleConnectorConfig
public static enum OracleConnectorConfig.LogMiningBufferType extends Enum<OracleConnectorConfig.LogMiningBufferType> implements EnumeratedValue
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INFINISPANMEMORY
-
Constructor Summary
Constructors Modifier Constructor Description privateLogMiningBufferType(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static OracleConnectorConfig.LogMiningBufferTypeparse(String value)private static OracleConnectorConfig.LogMiningBufferTypeparse(String value, String defaultValue)static OracleConnectorConfig.LogMiningBufferTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OracleConnectorConfig.LogMiningBufferType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEMORY
public static final OracleConnectorConfig.LogMiningBufferType MEMORY
-
INFINISPAN
public static final OracleConnectorConfig.LogMiningBufferType INFINISPAN
-
-
Field Detail
-
value
private final String value
-
-
Constructor Detail
-
LogMiningBufferType
private LogMiningBufferType(String value)
-
-
Method Detail
-
values
public static OracleConnectorConfig.LogMiningBufferType[] 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.LogMiningBufferType c : OracleConnectorConfig.LogMiningBufferType.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.LogMiningBufferType 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.LogMiningBufferType parse(String value)
-
parse
private static OracleConnectorConfig.LogMiningBufferType parse(String value, String defaultValue)
-
-