public class CharacterCompatFieldConverter extends BaseFieldConverter
| Constructor and Description |
|---|
CharacterCompatFieldConverter(FieldConverter wrappedConverter) |
| Modifier and Type | Method and Description |
|---|---|
SqlType |
getSqlType()
Return the SQL type that is stored in the database for this argument.
|
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 |
resultStringToJava(FieldType fieldType,
String stringValue,
int columnPos)
Convert a string result value to the related Java field.
|
Object |
resultToJava(FieldType fieldType,
DatabaseResults results,
int columnPos)
This is usually just a call that takes the result from
FieldConverter.resultToSqlArg(FieldType, DatabaseResults, int)
and passes it through FieldConverter.sqlArgToJava(FieldType, Object, int). |
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.
|
isStreamTypepublic CharacterCompatFieldConverter(FieldConverter wrappedConverter)
public SqlType getSqlType()
FieldConverterpublic Object parseDefaultString(FieldType fieldType, String defaultStr) throws SQLException
FieldConverterSQLExceptionpublic Object javaToSqlArg(FieldType fieldType, Object obj) throws SQLException
FieldConverterjavaToSqlArg in interface FieldConverterjavaToSqlArg in class BaseFieldConverterSQLException - If there are problems with the conversion.public 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 resultToJava(FieldType fieldType, DatabaseResults results, int columnPos) throws SQLException
FieldConverterFieldConverter.resultToSqlArg(FieldType, DatabaseResults, int)
and passes it through FieldConverter.sqlArgToJava(FieldType, Object, int).resultToJava in interface FieldConverterresultToJava in class BaseFieldConverterSQLExceptionpublic 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 resultStringToJava(FieldType fieldType, String stringValue, int columnPos) throws SQLException
FieldConverterSQLExceptionpublic Object makeConfigObject(FieldType fieldType) throws SQLException
FieldConverterFieldType.getDataTypeConfigObj().makeConfigObject in interface FieldConvertermakeConfigObject in class BaseFieldConverterSQLException - If there are problems creating the config object. Needed for subclasses.FieldConverter.makeConfigObject(FieldType)This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.