Liking cljdoc? Tell your friends :D

jdk.sql.JDBCType


*value-ofclj

(*value-of 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.)

name - the name of the enum constant to be returned. - java.lang.String

returns: the enum constant with the specified name - java.sql.JDBCType

throws: java.lang.IllegalArgumentException - if this enum type has no constant with the specified 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.)

name - the name of the enum constant to be returned. - `java.lang.String`

returns: the enum constant with the specified name - `java.sql.JDBCType`

throws: java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
raw docstring

*valuesclj

(*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 (JDBCType c : JDBCType.values()) System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - java.sql.JDBCType[]

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 (JDBCType c : JDBCType.values())
    System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - `java.sql.JDBCType[]`
raw docstring

ARRAYclj

Enum Constant.

Identifies the generic SQL type ARRAY.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type ARRAY.

type: java.sql.JDBCType
raw docstring

BIGINTclj

Enum Constant.

Identifies the generic SQL type BIGINT.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type BIGINT.

type: java.sql.JDBCType
raw docstring

BINARYclj

Enum Constant.

Identifies the generic SQL type BINARY.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type BINARY.

type: java.sql.JDBCType
raw docstring

BITclj

Enum Constant.

Identifies the generic SQL type BIT.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type BIT.

type: java.sql.JDBCType
raw docstring

BLOBclj

Enum Constant.

Identifies the generic SQL type BLOB.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type BLOB.

type: java.sql.JDBCType
raw docstring

BOOLEANclj

Enum Constant.

Identifies the generic SQL type BOOLEAN.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type BOOLEAN.

type: java.sql.JDBCType
raw docstring

CHARclj

Enum Constant.

Identifies the generic SQL type CHAR.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type CHAR.

type: java.sql.JDBCType
raw docstring

CLOBclj

Enum Constant.

Identifies the generic SQL type CLOB.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type CLOB.

type: java.sql.JDBCType
raw docstring

Enum Constant.

Identifies the generic SQL type DATALINK.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type DATALINK.

type: java.sql.JDBCType
raw docstring

DATEclj

Enum Constant.

Identifies the generic SQL type DATE.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type DATE.

type: java.sql.JDBCType
raw docstring

DECIMALclj

Enum Constant.

Identifies the generic SQL type DECIMAL.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type DECIMAL.

type: java.sql.JDBCType
raw docstring

DISTINCTclj

Enum Constant.

Identifies the generic SQL type DISTINCT.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type DISTINCT.

type: java.sql.JDBCType
raw docstring

DOUBLEclj

Enum Constant.

Identifies the generic SQL type DOUBLE.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type DOUBLE.

type: java.sql.JDBCType
raw docstring

FLOATclj

Enum Constant.

Identifies the generic SQL type FLOAT.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type FLOAT.

type: java.sql.JDBCType
raw docstring

get-nameclj

(get-name this)

Returns the SQLType name that represents a SQL data type.

returns: The name of this SQLType. - java.lang.String

Returns the SQLType name that represents a SQL data type.

returns: The name of this SQLType. - `java.lang.String`
raw docstring

get-vendorclj

(get-vendor this)

Returns the name of the vendor that supports this data type.

returns: The name of the vendor for this data type which is java.sql for JDBCType. - java.lang.String

Returns the name of the vendor that supports this data type.

returns: The name of the vendor for this data type which is
 java.sql for JDBCType. - `java.lang.String`
raw docstring

get-vendor-type-numberclj

(get-vendor-type-number this)

Returns the vendor specific type number for the data type.

returns: An Integer representing the data type. For JDBCType, the value will be the same value as in Types for the data type. - java.lang.Integer

Returns the vendor specific type number for the data type.

returns: An Integer representing the data type. For JDBCType,
 the value will be the same value as in Types for the data type. - `java.lang.Integer`
raw docstring

INTEGERclj

Enum Constant.

Identifies the generic SQL type INTEGER.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type INTEGER.

type: java.sql.JDBCType
raw docstring

JAVA_OBJECTclj

Enum Constant.

Indicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.

type: java.sql.JDBCType

Enum Constant.

Indicates that the SQL type
 is database-specific and gets mapped to a Java object that can be
 accessed via the methods getObject and setObject.

type: java.sql.JDBCType
raw docstring

LONGNVARCHARclj

Enum Constant.

Identifies the generic SQL type LONGNVARCHAR.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type LONGNVARCHAR.

type: java.sql.JDBCType
raw docstring

LONGVARBINARYclj

Enum Constant.

Identifies the generic SQL type LONGVARBINARY.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type LONGVARBINARY.

type: java.sql.JDBCType
raw docstring

LONGVARCHARclj

Enum Constant.

Identifies the generic SQL type LONGVARCHAR.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type LONGVARCHAR.

type: java.sql.JDBCType
raw docstring

NCHARclj

Enum Constant.

Identifies the generic SQL type NCHAR.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type NCHAR.

type: java.sql.JDBCType
raw docstring

NCLOBclj

Enum Constant.

Identifies the generic SQL type NCLOB.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type NCLOB.

type: java.sql.JDBCType
raw docstring

NULLclj

Enum Constant.

Identifies the generic SQL value NULL.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL value NULL.

type: java.sql.JDBCType
raw docstring

NUMERICclj

Enum Constant.

Identifies the generic SQL type NUMERIC.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type NUMERIC.

type: java.sql.JDBCType
raw docstring

NVARCHARclj

Enum Constant.

Identifies the generic SQL type NVARCHAR.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type NVARCHAR.

type: java.sql.JDBCType
raw docstring

OTHERclj

Enum Constant.

Indicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.

type: java.sql.JDBCType

Enum Constant.

Indicates that the SQL type
 is database-specific and gets mapped to a Java object that can be
 accessed via the methods getObject and setObject.

type: java.sql.JDBCType
raw docstring

REALclj

Enum Constant.

Identifies the generic SQL type REAL.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type REAL.

type: java.sql.JDBCType
raw docstring

REFclj

Enum Constant.

Identifies the generic SQL type REF.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type REF.

type: java.sql.JDBCType
raw docstring

REF_CURSORclj

Enum Constant.

Identifies the generic SQL type REF_CURSOR.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type REF_CURSOR.

type: java.sql.JDBCType
raw docstring

ROWIDclj

Enum Constant.

Identifies the SQL type ROWID.

type: java.sql.JDBCType

Enum Constant.

Identifies the SQL type ROWID.

type: java.sql.JDBCType
raw docstring

SMALLINTclj

Enum Constant.

Identifies the generic SQL type SMALLINT.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type SMALLINT.

type: java.sql.JDBCType
raw docstring

SQLXMLclj

Enum Constant.

Identifies the generic SQL type SQLXML.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type SQLXML.

type: java.sql.JDBCType
raw docstring

STRUCTclj

Enum Constant.

Identifies the generic SQL type STRUCT.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type STRUCT.

type: java.sql.JDBCType
raw docstring

TIMEclj

Enum Constant.

Identifies the generic SQL type TIME.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type TIME.

type: java.sql.JDBCType
raw docstring

TIME_WITH_TIMEZONEclj

Enum Constant.

Identifies the generic SQL type TIME_WITH_TIMEZONE.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type TIME_WITH_TIMEZONE.

type: java.sql.JDBCType
raw docstring

TIMESTAMPclj

Enum Constant.

Identifies the generic SQL type TIMESTAMP.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type TIMESTAMP.

type: java.sql.JDBCType
raw docstring

TIMESTAMP_WITH_TIMEZONEclj

Enum Constant.

Identifies the generic SQL type TIMESTAMP_WITH_TIMEZONE.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type TIMESTAMP_WITH_TIMEZONE.

type: java.sql.JDBCType
raw docstring

TINYINTclj

Enum Constant.

Identifies the generic SQL type TINYINT.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type TINYINT.

type: java.sql.JDBCType
raw docstring

VARBINARYclj

Enum Constant.

Identifies the generic SQL type VARBINARY.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type VARBINARY.

type: java.sql.JDBCType
raw docstring

VARCHARclj

Enum Constant.

Identifies the generic SQL type VARCHAR.

type: java.sql.JDBCType

Enum Constant.

Identifies the generic SQL type VARCHAR.

type: java.sql.JDBCType
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close