public class EnumStringType extends BaseEnumType
Enum.name(). You can also use the
EnumIntegerType to persist it's enum ordinal value. If you want to use the Enum.toString() instead,
see the EnumToStringType.| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_WIDTH |
| Modifier | Constructor and Description |
|---|---|
protected |
EnumStringType(SqlType sqlType,
Class<?>[] classes)
Here for others to subclass.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getDefaultWidth()
Return the default width associated with this type or 0 if none.
|
protected String |
getEnumName(Enum<?> enumVal) |
static EnumStringType |
getSingleton() |
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 |
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.
|
enumVal, isValidForFieldconvertIdNumber, dataIsEqual, generateId, getAssociatedClasses, getAssociatedClassNames, getPrimaryClass, getSqlOtherType, getSqlType, isAppropriateId, isArgumentHolderRequired, isComparable, isEscapedDefaultValue, isEscapedValue, isPrimitive, isSelfGeneratedId, isValidForVersion, isValidGeneratedType, moveToNextValue, resultStringToJavaisStreamType, resultToJavaclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitisStreamType, resultToJavapublic static EnumStringType getSingleton()
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 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 parseDefaultString(FieldType fieldType, String defaultStr)
FieldConverterpublic Object javaToSqlArg(FieldType fieldType, Object obj)
FieldConverterjavaToSqlArg in interface FieldConverterjavaToSqlArg in class BaseFieldConverterpublic 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)public int getDefaultWidth()
DataPersistergetDefaultWidth in interface DataPersistergetDefaultWidth in class BaseDataTypeThis documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.