public enum JdbcType extends Enum<JdbcType>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE_ARRAY |
DATE |
DECIMAL |
DOUBLE |
FLOAT |
INTEGER |
LONG |
OBJECT |
STRING |
| 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 BOOLEAN
public static final JdbcType BYTE_ARRAY
public static final JdbcType INTEGER
public static final JdbcType LONG
public static final JdbcType DOUBLE
public static final JdbcType FLOAT
public static final JdbcType DECIMAL
public static final JdbcType DATE
public static final JdbcType STRING
public static final JdbcType OBJECT
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 © 2021. All rights reserved.