| it.biobytes.ammentos.FieldType
All known Subclasses: it.biobytes.ammentos.fieldtypes.StringType, it.biobytes.ammentos.fieldtypes.IntegerType, it.biobytes.ammentos.fieldtypes.BooleanType, it.biobytes.ammentos.fieldtypes.ShortType, it.biobytes.ammentos.fieldtypes.EntityType, it.biobytes.ammentos.fieldtypes.LongType, it.biobytes.ammentos.fieldtypes.EnumType, it.biobytes.ammentos.fieldtypes.FloatType, it.biobytes.ammentos.fieldtypes.DateTimeType, it.biobytes.ammentos.fieldtypes.FactoryType, it.biobytes.ammentos.fieldtypes.DoubleType,
FieldType | public interface FieldType (Code) | | Describes a valid type of data for a Field
author: davide |
addValues | public Object addValues(Object value1, Object value2)(Code) | | Returns the sum of the provided values, or null if summing is not possible
Parameters: value1 - First value to add Parameters: value2 - Second value to add |
getMappedClass | public Class getMappedClass()(Code) | | Gets the underlying mapped Java class represented from elements of this
type
the Java class mapped from this FieldType |
getSqlType | public int getSqlType()(Code) | | Returns the SQL type (as enumerated in java.sql.Types) of this field type.
See Also: java.sql.Types |
isNumeric | public boolean isNumeric()(Code) | | |
|
|