net.sf.basedb.core.data
Class TimestampParameterValueData
java.lang.Object
net.sf.basedb.core.data.BasicData
net.sf.basedb.core.data.ParameterValueData<Date>
net.sf.basedb.core.data.TimestampParameterValueData
- All Implemented Interfaces:
- IdentifiableData
public class TimestampParameterValueData
- extends ParameterValueData<Date>
Date+time parameter value.
- Since:
- 2.16
- Author:
- Nicklas
- See Also:
- Parameters overview
- Last modified
- $Date $
- Hibernate: subclass
- discriminator-value="11"
Method Summary |
List<Date> |
getValues()
Get values of this parameter. |
int |
getValueType()
Get the type of parameter values that are store in this parameter. |
(package private) void |
setValues(List<Date> values)
Set values of this parameter. |
String |
toString()
The string will look like ClassName[id=55] or
ClassName[new] . |
values
private List<Date> values
TimestampParameterValueData
public TimestampParameterValueData()
TimestampParameterValueData
public TimestampParameterValueData(Date... 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<Date>
- Returns:
- 9 (Type.TIMESTAMP)
- Since:
- 2.16
getValues
public List<Date> 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<Date>
- Returns:
- Collection of values.
- Hibernate: collection-key
- column="`id`"
- Hibernate: collection-element
- column="`value`" type="timestamp" not-null="true"
- Hibernate: bag
- table="`TimestampValues`" lazy="true" cascade="all"
setValues
void setValues(List<Date> 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<Date>
- 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