public static enum SQLMap.SqlType extends Enum<SQLMap.SqlType>
Enum Constant and Description |
---|
SQL_BLOB |
SQL_BOOLEAN |
SQL_DATE |
SQL_DOUBLE |
SQL_EXCLUDE |
SQL_FLOAT |
SQL_INTEGER |
SQL_LONG |
SQL_SHORT |
SQL_TEXT |
Modifier and Type | Method and Description |
---|---|
protected Object |
asUpdateInsertValue(Object data,
Property p) |
protected Object |
getValue(Row row,
int index,
PropertyBase base) |
static SQLMap.SqlType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLMap.SqlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOf
public static final SQLMap.SqlType SQL_EXCLUDE
public static final SQLMap.SqlType SQL_TEXT
public static final SQLMap.SqlType SQL_INTEGER
public static final SQLMap.SqlType SQL_BOOLEAN
public static final SQLMap.SqlType SQL_LONG
public static final SQLMap.SqlType SQL_DATE
public static final SQLMap.SqlType SQL_SHORT
public static final SQLMap.SqlType SQL_FLOAT
public static final SQLMap.SqlType SQL_BLOB
public static final SQLMap.SqlType SQL_DOUBLE
public static SQLMap.SqlType[] values()
for (SQLMap.SqlType c : SQLMap.SqlType.values()) System.out.println(c);
public static SQLMap.SqlType 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 nullprotected Object getValue(Row row, int index, PropertyBase base) throws IOException
IOException