ParameterStorage Objects
Subclass of Enum.
This class enumerates the valid storage types for columns in a DataModel or parameters.
Constants:
DATE (ParameterStorage) : Indicates that the storage type is a date type.
INTEGER (ParameterStorage) : Indicates that the storage type is an integer.
REAL (ParameterStorage) : Indicates that the storage type is a floating point number.
STRING (ParameterStorage) : Indicates that the storage type is a string.
TIME (ParameterStorage) : Indicates that the storage type is a time type.
TIMESTAMP (ParameterStorage) : Indicates that the storage type is a combined time and date type.
UNKNOWN (ParameterStorage) : Indicates that the storage type is unknown.
getEnum(name) : ParameterStorage
name (string) : the enumeration name
Returns the enumeration with the supplied name or None if no enumeration exists for the supplied name.
p.getStorageClass() : Class
Returns the Java class that parameter values with this storage will be returned as.
getValues() : ParameterStorage[]
Returns an array containing all the valid values for this enumeration class.