public enum PostgreSQLColumnType extends Enum<PostgreSQLColumnType>
| Modifier and Type | Method and Description |
|---|---|
static PostgreSQLColumnType |
valueOf(int value)
Value of.
|
static PostgreSQLColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostgreSQLColumnType |
valueOfJDBCType(int jdbcType)
Value of JDBC type.
|
static PostgreSQLColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostgreSQLColumnType POSTGRESQL_TYPE_UNSPECIFIED
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INT2
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INT2_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INT4
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INT4_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INT8
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INT8_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TEXT
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TEXT_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_NUMERIC
public static final PostgreSQLColumnType POSTGRESQL_TYPE_NUMERIC_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_FLOAT4
public static final PostgreSQLColumnType POSTGRESQL_TYPE_FLOAT4_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_FLOAT8
public static final PostgreSQLColumnType POSTGRESQL_TYPE_FLOAT8_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BOOL
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BOOL_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_DATE
public static final PostgreSQLColumnType POSTGRESQL_TYPE_DATE_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIME
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIME_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIMETZ
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIMETZ_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIMESTAMP
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIMESTAMP_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIMESTAMPTZ
public static final PostgreSQLColumnType POSTGRESQL_TYPE_TIMESTAMPTZ_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BYTEA
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BYTEA_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_VARCHAR
public static final PostgreSQLColumnType POSTGRESQL_TYPE_VARCHAR_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_OID
public static final PostgreSQLColumnType POSTGRESQL_TYPE_OID_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BPCHAR
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BPCHAR_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_MONEY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_MONEY_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_NAME
public static final PostgreSQLColumnType POSTGRESQL_TYPE_NAME_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BIT
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BIT_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_VOID
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INTERVAL
public static final PostgreSQLColumnType POSTGRESQL_TYPE_INTERVAL_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_CHAR
public static final PostgreSQLColumnType POSTGRESQL_TYPE_CHAR_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_VARBIT
public static final PostgreSQLColumnType POSTGRESQL_TYPE_VARBIT_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_UUID
public static final PostgreSQLColumnType POSTGRESQL_TYPE_UUID_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_XML
public static final PostgreSQLColumnType POSTGRESQL_TYPE_XML_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_POINT
public static final PostgreSQLColumnType POSTGRESQL_TYPE_POINT_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_BOX
public static final PostgreSQLColumnType POSTGRESQL_TYPE_JSONB_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_JSON
public static final PostgreSQLColumnType POSTGRESQL_TYPE_JSON_ARRAY
public static final PostgreSQLColumnType POSTGRESQL_TYPE_REF_CURSOR
public static final PostgreSQLColumnType POSTGRESQL_TYPE_REF_CURSOR_ARRAY
public static PostgreSQLColumnType[] values()
for (PostgreSQLColumnType c : PostgreSQLColumnType.values()) System.out.println(c);
public static PostgreSQLColumnType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static PostgreSQLColumnType valueOfJDBCType(int jdbcType)
jdbcType - JDBC typepublic static PostgreSQLColumnType valueOf(int value)
value - valueCopyright © 2020 The Apache Software Foundation. All rights reserved.