Package com.clickhouse.jdbc.internal
Enum DriverProperties
- All Implemented Interfaces:
Serializable,Comparable<DriverProperties>,java.lang.constant.Constable
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionquery settings to be passed along with query operation.Indicates if driver should create a secure connection over SSL/TLS -
Method Summary
Modifier and TypeMethodDescriptiongetKey()static DriverPropertiesReturns the enum constant of this type with the specified name.static DriverProperties[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IGNORE_UNSUPPORTED_VALUES
-
SCHEMA_TERM
-
SECURE_CONNECTION
Indicates if driver should create a secure connection over SSL/TLS -
DEFAULT_QUERY_SETTINGS
query settings to be passed along with query operation.
-
-
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
-
getKey
-
getDefaultValue
-
getChoices
-