public static enum ProcessResultSet.FieldType extends Enum<ProcessResultSet.FieldType>
| Enum Constant and Description |
|---|
BIGDECIMAL |
BIGINT |
BOOL |
INT |
STRING |
TIMESTAMP |
TIMESTAMPTZ |
| Modifier and Type | Method and Description |
|---|---|
static ProcessResultSet.FieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessResultSet.FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessResultSet.FieldType INT
public static final ProcessResultSet.FieldType BIGINT
public static final ProcessResultSet.FieldType BIGDECIMAL
public static final ProcessResultSet.FieldType STRING
public static final ProcessResultSet.FieldType TIMESTAMP
public static final ProcessResultSet.FieldType TIMESTAMPTZ
public static final ProcessResultSet.FieldType BOOL
public static ProcessResultSet.FieldType[] values()
for (ProcessResultSet.FieldType c : ProcessResultSet.FieldType.values()) System.out.println(c);
public static ProcessResultSet.FieldType 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 nullCopyright © 2018 PostgreSQL Global Development Group. All rights reserved.