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 Constants Enum Constant Description INSENSITIVEInsensitive case implies that the table names are taken from the JDBC driver and converted to lower-case in the in-memory relational objects.SENSITIVESensitive 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 Modifier Constructor Description privateTableNameCaseSensitivity()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StreamingAdapter.TableNameCaseSensitivityvalueOf(String name)Returns the enum constant of this type with the specified name.static StreamingAdapter.TableNameCaseSensitivity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SENSITIVE
public static final StreamingAdapter.TableNameCaseSensitivity 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
public static final StreamingAdapter.TableNameCaseSensitivity 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.
-
-
Method Detail
-
values
public static StreamingAdapter.TableNameCaseSensitivity[] 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 (StreamingAdapter.TableNameCaseSensitivity c : StreamingAdapter.TableNameCaseSensitivity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamingAdapter.TableNameCaseSensitivity 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
-
-