public class SerializableType extends BaseDataType
Serializable.| Modifier | Constructor and Description |
|---|---|
protected |
SerializableType(SqlType sqlType,
Class<?>[] classes)
Here for others to subclass.
|
| Modifier and Type | Method and Description |
|---|---|
Class<?> |
getPrimaryClass()
Return the class most associated with this persister or null if none.
|
static SerializableType |
getSingleton() |
boolean |
isAppropriateId()
Return true if this data type can be an id column in a class.
|
boolean |
isArgumentHolderRequired()
Must use
ArgumentHolder when querying for values of this type. |
boolean |
isComparable()
Return true if this data type be compared in SQL statements.
|
boolean |
isStreamType()
Return whether or not this is a SQL "stream" object.
|
boolean |
isValidForField(Field field)
Return true if the field is appropriate for this persister otherwise false.
|
Object |
javaToSqlArg(FieldType fieldType,
Object obj)
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 |
resultStringToJava(FieldType fieldType,
String stringValue,
int columnPos)
Convert a string result value to the related Java field.
|
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.
|
convertIdNumber, dataIsEqual, generateId, getAssociatedClasses, getAssociatedClassNames, getDefaultWidth, getSqlOtherType, getSqlType, isEscapedDefaultValue, isEscapedValue, isPrimitive, isSelfGeneratedId, isValidForVersion, isValidGeneratedType, moveToNextValuemakeConfigObject, resultToJavaclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitmakeConfigObject, resultToJavapublic static SerializableType getSingleton()
public Object parseDefaultString(FieldType fieldType, String defaultStr) throws SQLException
FieldConverterSQLExceptionpublic Object resultToSqlArg(FieldType fieldType, DatabaseResults results, int columnPos) throws SQLException
FieldConverterfieldType - 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
FieldConvertersqlArgToJava in interface FieldConvertersqlArgToJava in class BaseFieldConverterfieldType - Associated FieldType which may be null.sqlArg - SQL argument converted with FieldConverter.resultToSqlArg(FieldType, DatabaseResults, int) which will not be
null.SQLException - If there are problems with the conversion.public Object javaToSqlArg(FieldType fieldType, Object obj) throws SQLException
FieldConverterjavaToSqlArg in interface FieldConverterjavaToSqlArg in class BaseFieldConverterSQLException - If there are problems with the conversion.public boolean isValidForField(Field field)
DataPersisterisValidForField in interface DataPersisterisValidForField in class BaseDataTypepublic boolean isStreamType()
FieldConverterisStreamType in interface FieldConverterisStreamType in class BaseFieldConverterpublic boolean isComparable()
DataPersisterisComparable in interface DataPersisterisComparable in class BaseDataTypepublic boolean isAppropriateId()
DataPersisterisAppropriateId in interface DataPersisterisAppropriateId in class BaseDataTypepublic boolean isArgumentHolderRequired()
DataPersisterArgumentHolder when querying for values of this type.isArgumentHolderRequired in interface DataPersisterisArgumentHolderRequired in class BaseDataTypepublic Object resultStringToJava(FieldType fieldType, String stringValue, int columnPos) throws SQLException
FieldConverterresultStringToJava in interface FieldConverterresultStringToJava in class BaseDataTypeSQLExceptionpublic Class<?> getPrimaryClass()
DataPersistergetPrimaryClass in interface DataPersistergetPrimaryClass in class BaseDataTypeThis documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.