protected static enum DBSQL.JavaToSqlType extends java.lang.Enum<DBSQL.JavaToSqlType>
| Enum Constant and Description |
|---|
BOOLEAN |
DOUBLE |
FLOAT |
INTEGER |
LONG |
MATH |
NUMBER |
SHORT |
| Modifier and Type | Method and Description |
|---|---|
protected static int |
getSqlType(java.lang.Object javaType) |
static DBSQL.JavaToSqlType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBSQL.JavaToSqlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBSQL.JavaToSqlType FLOAT
public static final DBSQL.JavaToSqlType DOUBLE
public static final DBSQL.JavaToSqlType INTEGER
public static final DBSQL.JavaToSqlType LONG
public static final DBSQL.JavaToSqlType MATH
public static final DBSQL.JavaToSqlType NUMBER
public static final DBSQL.JavaToSqlType SHORT
public static final DBSQL.JavaToSqlType BOOLEAN
public static DBSQL.JavaToSqlType[] values()
for (DBSQL.JavaToSqlType c : DBSQL.JavaToSqlType.values()) System.out.println(c);
public static DBSQL.JavaToSqlType 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 nullprotected static int getSqlType(java.lang.Object javaType)