Package simpleorm.dataset
Class SFieldDouble
java.lang.Object
simpleorm.dataset.SFieldMeta
simpleorm.dataset.SFieldScalar
simpleorm.dataset.SFieldDouble
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DoubleField
Represents Double field meta data.
- See Also:
-
Field Summary
Fields inherited from class simpleorm.dataset.SFieldScalar
sqlDataTypeOverride, theGenerator
Fields inherited from class simpleorm.dataset.SFieldMeta
quoteName
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected Object
Converts the parameter from the raw type parameter to the correct internal Object type that is stored in the data set.The default data type if not overriden by overrideSqlDataType.boolean
isFKeyCompatible
(SFieldScalar field) int
queryFieldValue
(ResultSet rs, int sqlIndex) Specidalizes abstract method to actually query a column from a result set.Methods inherited from class simpleorm.dataset.SFieldScalar
getColumnName, getGeneratorMode, getGeneratorParameter, getMaxSize, getReferences, getTheGenerator, isForeignKey, isGenerated, isMandatory, isNotOptimisticLocked, isPrimary, overrideSqlDataType, setGeneratorMode, setMaxSize, setTheGenerator, toLongerString
Methods inherited from class simpleorm.dataset.SFieldMeta
addFlag, addValidator, doValidate, equals, getFieldName, getFlags, getRecordMeta, getUserProperties, getUserProperty, getValidators, hashCode, isDescriptive, isUnqueried, nextGeneratedValue, putUserProperty, readResolve, setQuoted, toString, writeFieldValue, writeFieldValue
-
Constructor Details
-
SFieldDouble
-
-
Method Details
-
queryFieldValue
Specidalizes abstract method to actually query a column from a result set.- Specified by:
queryFieldValue
in classSFieldMeta
- Throws:
Exception
-
convertToDataSetFieldType
Description copied from class:SFieldMeta
Converts the parameter from the raw type parameter to the correct internal Object type that is stored in the data set. Returns the object if no conversion necessary. Used bySRecordInstance.setObject
etc., Not getObject.- Specified by:
convertToDataSetFieldType
in classSFieldMeta
- Throws:
Exception
-
defaultSqlDataType
Description copied from class:SFieldScalar
The default data type if not overriden by overrideSqlDataType. This is only called when the data type is actually needed by CREATE TABLE, ie if no sqlDataTypeOverride is specified.- Specified by:
defaultSqlDataType
in classSFieldScalar
-
isFKeyCompatible
-
javaSqlType
public int javaSqlType()- Specified by:
javaSqlType
in classSFieldScalar
- Returns:
- int constant from java.sql.Types, used for setting sql datatype with null values
-