net.sf.basedb.core.data
Class DoubleParameterValueData
java.lang.Object
net.sf.basedb.core.data.BasicData
net.sf.basedb.core.data.ParameterValueData<Double>
net.sf.basedb.core.data.DoubleParameterValueData
- All Implemented Interfaces:
- IdentifiableData
public class DoubleParameterValueData
- extends ParameterValueData<Double>
Double parameter value.
- Version:
- 2.0
- Author:
- Nicklas, Samuel
- See Also:
- Parameters overview
- Last modified
- $Date: 2005-07-05 15:51:30 +0200 (ti, 05 jul 2005) $
- Hibernate: subclass
- discriminator-value="4"
values
private List<Double> values
DoubleParameterValueData
public DoubleParameterValueData()
DoubleParameterValueData
public DoubleParameterValueData(Double... values)
getValueType
public int getValueType()
- Description copied from class:
ParameterValueData
- Get the type of parameter values that are store in this parameter.
The value should correspond to one of the
Type.getValue()
values, or 0 if the parameter has no corresponding type.
- Specified by:
getValueType
in class ParameterValueData<Double>
- Returns:
- 4 (Type.DOUBLE)
- Since:
- 2.16
getValues
public List<Double> getValues()
- Description copied from class:
ParameterValueData
- Get values of this parameter. Hibernate mapped in each subclass
to a bag containing all values for the parameter.
- Specified by:
getValues
in class ParameterValueData<Double>
- Returns:
- Collection of values.
- Hibernate: collection-key
- column="`id`"
- Hibernate: collection-element
- column="`value`" type="double" not-null="true"
- Hibernate: bag
- table="`DoubleValues`" lazy="true" cascade="all"
setValues
void setValues(List<Double> values)
- Description copied from class:
ParameterValueData
- Set values of this parameter.
NOTE! Used by Hibernate to initialize the object. Do not
call AnnotationData.setLastUpdate(java.util.Date)
!
- Specified by:
setValues
in class ParameterValueData<Double>
- Parameters:
values
- Collection of values.
toString
public String toString()
- Description copied from class:
BasicData
- The string will look like
ClassName[id=55]
or
ClassName[new]
.
- Overrides:
toString
in class BasicData