declare namespace java { namespace sql { /** *

The class that defines the constants that are used to identify generic * SQL types, called JDBC types. *

* This class is never instantiated. */ // @ts-ignore class Types extends java.lang.Object { /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * BIT. */ // @ts-ignore public static readonly BIT: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * TINYINT. */ // @ts-ignore public static readonly TINYINT: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * SMALLINT. */ // @ts-ignore public static readonly SMALLINT: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * INTEGER. */ // @ts-ignore public static readonly INTEGER: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * BIGINT. */ // @ts-ignore public static readonly BIGINT: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * FLOAT. */ // @ts-ignore public static readonly FLOAT: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * REAL. */ // @ts-ignore public static readonly REAL: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * DOUBLE. */ // @ts-ignore public static readonly DOUBLE: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * NUMERIC. */ // @ts-ignore public static readonly NUMERIC: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * DECIMAL. */ // @ts-ignore public static readonly DECIMAL: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * CHAR. */ // @ts-ignore public static readonly CHAR: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * VARCHAR. */ // @ts-ignore public static readonly VARCHAR: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * LONGVARCHAR. */ // @ts-ignore public static readonly LONGVARCHAR: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * DATE. */ // @ts-ignore public static readonly DATE: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * TIME. */ // @ts-ignore public static readonly TIME: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * TIMESTAMP. */ // @ts-ignore public static readonly TIMESTAMP: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * BINARY. */ // @ts-ignore public static readonly BINARY: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * VARBINARY. */ // @ts-ignore public static readonly VARBINARY: number /*int*/ /** *

The constant in the Java programming language, sometimes referred * to as a type code, that identifies the generic SQL type * LONGVARBINARY. */ // @ts-ignore public static readonly LONGVARBINARY: number /*int*/ /** *

The constant in the Java programming language * that identifies the generic SQL value * NULL. */ // @ts-ignore public static readonly NULL: number /*int*/ /** * The constant in the Java programming language that 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. */ // @ts-ignore public static readonly OTHER: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * JAVA_OBJECT. * @since 1.2 */ // @ts-ignore public static readonly JAVA_OBJECT: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * DISTINCT. * @since 1.2 */ // @ts-ignore public static readonly DISTINCT: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * STRUCT. * @since 1.2 */ // @ts-ignore public static readonly STRUCT: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * ARRAY. * @since 1.2 */ // @ts-ignore public static readonly ARRAY: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * BLOB. * @since 1.2 */ // @ts-ignore public static readonly BLOB: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * CLOB. * @since 1.2 */ // @ts-ignore public static readonly CLOB: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * REF. * @since 1.2 */ // @ts-ignore public static readonly REF: number /*int*/ /** * The constant in the Java programming language, somtimes referred to * as a type code, that identifies the generic SQL type DATALINK. * @since 1.4 */ // @ts-ignore public static readonly DATALINK: number /*int*/ /** * The constant in the Java programming language, somtimes referred to * as a type code, that identifies the generic SQL type BOOLEAN. * @since 1.4 */ // @ts-ignore public static readonly BOOLEAN: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type ROWID * @since 1.6 */ // @ts-ignore public static readonly ROWID: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type NCHAR * @since 1.6 */ // @ts-ignore public static readonly NCHAR: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type NVARCHAR. * @since 1.6 */ // @ts-ignore public static readonly NVARCHAR: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type LONGNVARCHAR. * @since 1.6 */ // @ts-ignore public static readonly LONGNVARCHAR: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type NCLOB. * @since 1.6 */ // @ts-ignore public static readonly NCLOB: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type XML. * @since 1.6 */ // @ts-ignore public static readonly SQLXML: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type {@code REF CURSOR}. * @since 1.8 */ // @ts-ignore public static readonly REF_CURSOR: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * {@code TIME WITH TIMEZONE}. * @since 1.8 */ // @ts-ignore public static readonly TIME_WITH_TIMEZONE: number /*int*/ /** * The constant in the Java programming language, sometimes referred to * as a type code, that identifies the generic SQL type * {@code TIMESTAMP WITH TIMEZONE}. * @since 1.8 */ // @ts-ignore public static readonly TIMESTAMP_WITH_TIMEZONE: number /*int*/ } } }