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 Details

    • 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. Any TableId that 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. Any TableId that 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

      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 name
      NullPointerException - if the argument is null