|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.j256.ormlite.field.types.BaseDataType
com.j256.ormlite.field.types.BaseEnumType
com.j256.ormlite.field.types.EnumIntegerType
public class EnumIntegerType
Persists an Enum Java class as its ordinal integer value. You can also specify the EnumStringType
as the
type.
Method Summary | |
---|---|
static EnumIntegerType |
getSingleton()
|
boolean |
isEscapedValue()
Return whether we need to escape this value in SQL expressions. |
Object |
javaToSqlArg(FieldType fieldType,
Object obj)
Convert a Java object and return the appropriate argument to a SQL insert or update statement. |
Object |
makeConfigObject(FieldType fieldType)
This makes a configuration object for the data-type or returns null if none. |
Object |
parseDefaultString(FieldType fieldType,
String defaultStr)
Convert a default string object and return the appropriate argument to a SQL insert or update statement. |
Object |
resultToJava(FieldType fieldType,
DatabaseResults results,
int columnPos)
Return the object extracted from the results associated with column in position columnPos. |
Object |
sqlArgToJava(FieldType fieldType,
Object sqlArg,
int columnPos)
Return the object converted from the SQL arg to java. |
Methods inherited from class com.j256.ormlite.field.types.BaseEnumType |
---|
enumVal, isValidForField |
Methods inherited from class com.j256.ormlite.field.types.BaseDataType |
---|
convertIdNumber, dataIsEqual, generateId, getAssociatedClasses, getDefaultWidth, getSqlType, isAppropriateId, isComparable, isEscapedDefaultValue, isPrimitive, isSelectArgRequired, isSelfGeneratedId, isStreamType, isValidForVersion, isValidGeneratedType, moveToNextValue |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static EnumIntegerType getSingleton()
public Object parseDefaultString(FieldType fieldType, String defaultStr)
FieldConverter
parseDefaultString
in interface FieldConverter
parseDefaultString
in class BaseDataType
public Object resultToJava(FieldType fieldType, DatabaseResults results, int columnPos) throws SQLException
FieldConverter
resultToJava
in interface FieldConverter
resultToJava
in class BaseDataType
fieldType
- Associated FieldType which may be null.
SQLException
- If there is a problem accessing the results data.public Object sqlArgToJava(FieldType fieldType, Object sqlArg, int columnPos) throws SQLException
FieldConverter
sqlArgToJava
in interface FieldConverter
sqlArgToJava
in class BaseDataType
fieldType
- Associated FieldType which may be null.
SQLException
public Object javaToSqlArg(FieldType fieldType, Object obj)
FieldConverter
javaToSqlArg
in interface FieldConverter
javaToSqlArg
in class BaseDataType
public boolean isEscapedValue()
DataPersister
isEscapedValue
in interface DataPersister
isEscapedValue
in class BaseDataType
public Object makeConfigObject(FieldType fieldType) throws SQLException
DataPersister
FieldType.getDataTypeConfigObj()
.
makeConfigObject
in interface DataPersister
makeConfigObject
in class BaseDataType
SQLException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |