Enum Constant and Description |
---|
BIG_INT
bigint type
|
BOOL
Bool type
|
BYTES
bytes type
|
CHAR
char type
|
DATE
date type
|
DOUBLE
double type
|
GEOGRAPHY
geography type
|
INT
int type
|
INTERVAL
interval type
|
JSON
json type
|
NUMERIC
numeric type
|
OID
OID type
|
SMALL_INT
smallint type
|
TEXT
text type
|
TIME
time type
|
TIMESTAMP
timestamp type
|
TIMESTAMP_TZ
timestamptz type
|
UNSUPPORTED
Unsupported type
|
VARCHAR
varchar type
|
Modifier and Type | Method and Description |
---|---|
static TypeTag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeTag UNSUPPORTED
public static final TypeTag BOOL
public static final TypeTag BIG_INT
public static final TypeTag SMALL_INT
public static final TypeTag INT
public static final TypeTag NUMERIC
public static final TypeTag DOUBLE
public static final TypeTag OID
public static final TypeTag BYTES
public static final TypeTag TEXT
public static final TypeTag VARCHAR
public static final TypeTag CHAR
public static final TypeTag JSON
public static final TypeTag DATE
public static final TypeTag INTERVAL
public static final TypeTag TIME
public static final TypeTag TIMESTAMP
public static final TypeTag TIMESTAMP_TZ
public static final TypeTag GEOGRAPHY
public static TypeTag[] values()
for (TypeTag c : TypeTag.values()) System.out.println(c);
public static TypeTag valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null