Package io.debezium.connector.oracle
Enum StreamingAdapter.TableNameCaseSensitivity
java.lang.Object
java.lang.Enum<StreamingAdapter.TableNameCaseSensitivity>
io.debezium.connector.oracle.StreamingAdapter.TableNameCaseSensitivity
- All Implemented Interfaces:
Serializable,Comparable<StreamingAdapter.TableNameCaseSensitivity>
- Enclosing interface:
- StreamingAdapter
public static enum StreamingAdapter.TableNameCaseSensitivity
extends Enum<StreamingAdapter.TableNameCaseSensitivity>
Controls whether table names are viewed as case-sensitive or not.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInsensitive case implies that the table names are taken from the JDBC driver and converted to lower-case in the in-memory relational objects.Sensitive case implies that the table names are taken from the JDBC driver and kept as-is in the in-memory relational objects. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns 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
-
SENSITIVE
Sensitive case implies that the table names are taken from the JDBC driver and kept as-is in the in-memory relational objects. AnyTableIdthat is obtained will always have a table-name in the case that the driver provided. This is the default behavior for almost all cases. -
INSENSITIVE
Insensitive case implies that the table names are taken from the JDBC driver and converted to lower-case in the in-memory relational objects. AnyTableIdthat is obtained will always have a table-name in lower case regardless of how it may be represented in the database.
-
-
Constructor Details
-
TableNameCaseSensitivity
private TableNameCaseSensitivity()
-
-
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
-