Enum StreamingAdapter.TableNameCaseSensitivity

    • 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. 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 Detail

      • TableNameCaseSensitivity

        private TableNameCaseSensitivity()
    • 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 name
        NullPointerException - if the argument is null