public enum JDBCType extends Enum<JDBCType>
Enum Constant and Description |
---|
BIGINT |
BOOLEAN |
BYTEA |
DOUBLE |
INTEGER |
VARCHAR |
Modifier and Type | Method and Description |
---|---|
static JDBCType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JDBCType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JDBCType BYTEA
public static final JDBCType INTEGER
public static final JDBCType BIGINT
public static final JDBCType VARCHAR
public static final JDBCType BOOLEAN
public static final JDBCType DOUBLE
public static JDBCType[] values()
for (JDBCType c : JDBCType.values()) System.out.println(c);
public static JDBCType 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 © 2008–2017 MIL-OSS. All rights reserved.