|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.j256.ormlite.field.BaseFieldConverter
com.j256.ormlite.field.types.BaseDataType
com.j256.ormlite.field.types.BaseDateType
com.j256.ormlite.field.types.DateType
public class DateType
Type that persists a Date
object.
NOTE: This is not the same as the Date
class that is handled by SqlDateType
.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.j256.ormlite.field.types.BaseDateType |
---|
BaseDateType.DateStringFormatConfig |
Constructor Summary | |
---|---|
protected |
DateType(SqlType sqlType,
Class<?>[] classes)
|
Method Summary | |
---|---|
protected BaseDateType.DateStringFormatConfig |
getDefaultDateFormatConfig()
Return the default date format configuration. |
static DateType |
getSingleton()
|
boolean |
isArgumentHolderRequired()
Must use ArgumentHolder when querying for values of this type. |
Object |
javaToSqlArg(FieldType fieldType,
Object javaObject)
Convert a Java object and return the appropriate argument to a SQL insert or update statement. |
Object |
parseDefaultString(FieldType fieldType,
String defaultStr)
Convert a default string object and return the appropriate argument to a SQL insert or update statement. |
Object |
resultToSqlArg(FieldType fieldType,
DatabaseResults results,
int columnPos)
Return the SQL argument 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.BaseDateType |
---|
convertDateStringConfig, isValidForField, isValidForVersion, moveToNextValue, normalizeDateString, parseDateString |
Methods inherited from class com.j256.ormlite.field.types.BaseDataType |
---|
convertIdNumber, dataIsEqual, generateId, getAssociatedClasses, getAssociatedClassNames, getDefaultWidth, getSqlType, isAppropriateId, isComparable, isEscapedDefaultValue, isEscapedValue, isPrimitive, isSelfGeneratedId, isValidGeneratedType, makeConfigObject, resultStringToJava |
Methods inherited from class com.j256.ormlite.field.BaseFieldConverter |
---|
isStreamType, resultToJava |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.j256.ormlite.field.FieldConverter |
---|
isStreamType, resultToJava |
Constructor Detail |
---|
protected DateType(SqlType sqlType, Class<?>[] classes)
Method Detail |
---|
public static DateType getSingleton()
public Object parseDefaultString(FieldType fieldType, String defaultStr) throws SQLException
FieldConverter
parseDefaultString
in interface FieldConverter
parseDefaultString
in class BaseDataType
SQLException
public Object resultToSqlArg(FieldType fieldType, DatabaseResults results, int columnPos) throws SQLException
FieldConverter
resultToSqlArg
in interface FieldConverter
resultToSqlArg
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)
FieldConverter
sqlArgToJava
in interface FieldConverter
sqlArgToJava
in class BaseFieldConverter
fieldType
- Associated FieldType which may be null.sqlArg
- SQL argument converted with FieldConverter.resultToSqlArg(FieldType, DatabaseResults, int)
which will not be
null.public Object javaToSqlArg(FieldType fieldType, Object javaObject)
FieldConverter
javaToSqlArg
in interface FieldConverter
javaToSqlArg
in class BaseFieldConverter
public boolean isArgumentHolderRequired()
DataPersister
ArgumentHolder
when querying for values of this type.
isArgumentHolderRequired
in interface DataPersister
isArgumentHolderRequired
in class BaseDataType
protected BaseDateType.DateStringFormatConfig getDefaultDateFormatConfig()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |