public class BigIntegerType extends BaseDataType
BigInteger object.| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_WIDTH |
| Modifier | Constructor and Description |
|---|---|
protected |
BigIntegerType() |
protected |
BigIntegerType(SqlType sqlType,
Class<?>[] classes)
Here for others to subclass.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
convertIdNumber(Number number)
Convert a
Number object to its primitive object suitable for assigning to a java ID field. |
static BigIntegerType |
getSingleton() |
boolean |
isValidForVersion()
Return true if this is a valid field for the
DatabaseField.version(). |
boolean |
isValidGeneratedType()
Return true if this type can be auto-generated by the database.
|
Object |
javaToSqlArg(FieldType fieldType,
Object obj)
Convert a Java object and return the appropriate argument to a SQL insert or update statement.
|
Object |
moveToNextValue(Object currentValue)
Move the current-value to the next value.
|
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.
|
dataIsEqual, generateId, getAssociatedClasses, getAssociatedClassNames, getDefaultWidth, getPrimaryClass, getSqlOtherType, getSqlType, isAppropriateId, isArgumentHolderRequired, isComparable, isEscapedDefaultValue, isEscapedValue, isPrimitive, isSelfGeneratedId, isValidForField, makeConfigObject, resultStringToJavaisStreamType, resultToJavaclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitisStreamType, resultToJavapublic static BigIntegerType 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)
FieldConverterjavaToSqlArg in interface FieldConverterjavaToSqlArg in class BaseFieldConverterpublic Object moveToNextValue(Object currentValue)
BaseDataTypemoveToNextValue in interface DataPersistermoveToNextValue in class BaseDataTypepublic Object convertIdNumber(Number number)
DataPersisterNumber object to its primitive object suitable for assigning to a java ID field.convertIdNumber in interface DataPersisterconvertIdNumber in class BaseDataTypepublic boolean isValidGeneratedType()
DataPersisterisValidGeneratedType in interface DataPersisterisValidGeneratedType in class BaseDataTypepublic boolean isValidForVersion()
DataPersisterDatabaseField.version().isValidForVersion in interface DataPersisterisValidForVersion in class BaseDataTypeThis documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.