Enum DriverProperties

java.lang.Object
java.lang.Enum<DriverProperties>
com.clickhouse.jdbc.internal.DriverProperties
All Implemented Interfaces:
Serializable, Comparable<DriverProperties>, java.lang.constant.Constable

public enum DriverProperties extends Enum<DriverProperties>
JDBC driver specific properties. Should not include any of ClientConfigProperties. Processing logic should be the follows 1. If property is among DriverProperties then Driver handles it specially and will not pass to a client 2. If property is not among DriverProperties then it is passed to a client
  • Enum Constant Details

    • IGNORE_UNSUPPORTED_VALUES

      public static final DriverProperties IGNORE_UNSUPPORTED_VALUES
    • SCHEMA_TERM

      public static final DriverProperties SCHEMA_TERM
    • SECURE_CONNECTION

      public static final DriverProperties SECURE_CONNECTION
      Indicates if driver should create a secure connection over SSL/TLS
    • DEFAULT_QUERY_SETTINGS

      public static final DriverProperties DEFAULT_QUERY_SETTINGS
      query settings to be passed along with query operation.
  • Method Details

    • values

      public static DriverProperties[] 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 DriverProperties 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
    • getKey

      public String getKey()
    • getDefaultValue

      public String getDefaultValue()
    • getChoices

      public List<String> getChoices()