Package org.apache.calcite.avatica
Enum UnregisteredDriver.JdbcVersion
java.lang.Object
java.lang.Enum<UnregisteredDriver.JdbcVersion>
org.apache.calcite.avatica.UnregisteredDriver.JdbcVersion
- All Implemented Interfaces:
Serializable,Comparable<UnregisteredDriver.JdbcVersion>,java.lang.constant.Constable
- Enclosing class:
- UnregisteredDriver
JDBC version.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionJDBC version 3.0.JDBC version 4.0.JDBC version 4.1.Unknown JDBC version. -
Method Summary
Modifier and TypeMethodDescriptioncurrent()Deduces the current JDBC version.Returns the enum constant of this type with the specified name.static UnregisteredDriver.JdbcVersion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
JDBC_UNKNOWN
Unknown JDBC version. -
JDBC_30
JDBC version 3.0. Generally associated with JDK 1.5. -
JDBC_40
JDBC version 4.0. Generally associated with JDK 1.6. -
JDBC_41
JDBC version 4.1. Generally associated with JDK 1.7.
-
-
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
-
current
Deduces the current JDBC version.
-