Class NowValueHolder
java.lang.Object
de.uplanet.lucy.server.dataobjects.impl.NowValueHolder
- All Implemented Interfaces:
IDateTimeValueHolder
,IValueHolder<Date>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet the canonical lexical representation of this value according to it's datatype.Get the current time with fractional seconds in millisecond resolution.getType()
The type of data this value holder holds.getValue()
Get the current time with fractional seconds set to zero.boolean
hasValue()
Check if this value holder currently holds data or not.
-
Constructor Details
-
NowValueHolder
public NowValueHolder()
-
-
Method Details
-
getType
Description copied from interface:IValueHolder
The type of data this value holder holds.- Specified by:
getType
in interfaceIValueHolder<Date>
- Returns:
XSD_TYPE.DATETIME
.
-
getValue
Get the current time with fractional seconds set to zero.Note that subsequent calls to
getValue
will return the same value.- Specified by:
getValue
in interfaceIValueHolder<Date>
- Returns:
- A
java.sql.Timestamp
that represents the current time with fractional seconds set to zero.
-
getRawValue
Get the current time with fractional seconds in millisecond resolution.Note that subsequent calls to
getValue
will return the same value.- Specified by:
getRawValue
in interfaceIValueHolder<Date>
- Returns:
- A
java.sql.Timestamp
that represents the current time.
-
hasValue
public boolean hasValue()Description copied from interface:IValueHolder
Check if this value holder currently holds data or not.- Specified by:
hasValue
in interfaceIValueHolder<Date>
- Returns:
- Always
true
.
-
getCanonicalLexicalRepresentation
Description copied from interface:IValueHolder
Get the canonical lexical representation of this value according to it's datatype.- Specified by:
getCanonicalLexicalRepresentation
in interfaceIValueHolder<Date>
- Returns:
- The canonical lexical representation of the current date.
- See Also:
-