Package de.uplanet.lucy.server.scripting
Class ChimeraDate
java.lang.Object
java.util.Date
java.sql.Timestamp
de.uplanet.lucy.server.scripting.ChimeraDate
- All Implemented Interfaces:
de.uplanet.lucy.server.dataobjects.IDateTimeValueHolder,IValueHolder<Date>,Serializable,Cloneable,Comparable<Date>
public final class ChimeraDate
extends Timestamp
implements de.uplanet.lucy.server.dataobjects.IDateTimeValueHolder
This class represents a data/time value as both a
java.sql.Timestamp
and as a IDateTimeValueHolder.
Note: Use this class sparingly, and for scripting purposes only.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionChimeraDate(long p_lTime) ChimeraDate(Timestamp p_ts) ChimeraDate(Date p_dt) -
Method Summary
Modifier and TypeMethodDescriptionasDate()Get the current date, i.e.Get the current date, i.e.Get the current date, i.e.asTime()Get the current time, i.e.Get the canonical lexical representation of this value according to it's datatype.Get the raw data that this value holder holds.getType()The type of data this value holder holds.getValue()Get the data that this value holder holds.Discard the fractional seconds using the UTC time zone.getWithoutFractionalSeconds(String p_strTimeZone) Discard the fractional seconds.Discard the fractional seconds.booleanhasValue()Check if this value holder currently holds data or not.Methods inherited from class java.sql.Timestamp
after, before, compareTo, compareTo, equals, equals, from, getNanos, getTime, hashCode, setNanos, setTime, toInstant, toLocalDateTime, toString, valueOf, valueOfMethods inherited from class java.util.Date
after, before, clone, getDate, getDay, getHours, getMinutes, getMonth, getSeconds, getTimezoneOffset, getYear, parse, setDate, setHours, setMinutes, setMonth, setSeconds, setYear, toGMTString, toLocaleString, UTC
-
Constructor Details
-
ChimeraDate
public ChimeraDate(long p_lTime) -
ChimeraDate
-
ChimeraDate
-
-
Method Details
-
getType
Description copied from interface:IValueHolderThe type of data this value holder holds.- Specified by:
getTypein interfaceIValueHolder<Date>- Returns:
IxDatatype.DATETIME.
-
getValue
Description copied from interface:IValueHolderGet the data that this value holder holds.Implementations MUST ensure that multiple calls to this method will return values that equal each other.
- Specified by:
getValuein interfaceIValueHolder<Date>- Returns:
- The data.
-
getRawValue
Description copied from interface:IValueHolderGet the raw data that this value holder holds.- Specified by:
getRawValuein interfaceIValueHolder<Date>- Returns:
- The raw data.
-
hasValue
public boolean hasValue()Description copied from interface:IValueHolderCheck if this value holder currently holds data or not.- Specified by:
hasValuein interfaceIValueHolder<Date>- Returns:
trueif the data holder holds data, orfalseotherwise.
-
getCanonicalLexicalRepresentation
Description copied from interface:IValueHolderGet the canonical lexical representation of this value according to it's datatype.- Specified by:
getCanonicalLexicalRepresentationin interfaceIValueHolder<Date>- Returns:
- The canonical lexical representation of the current date.
- See Also:
-
getWithoutFractionalSeconds
Discard the fractional seconds using the UTC time zone.- Returns:
- The date/time with fractional seconds set to zero.
-
getWithoutFractionalSeconds
Discard the fractional seconds.- Parameters:
p_strTimeZone- The time zone to be used.- Returns:
- The date/time with fractional seconds set to zero.
-
getWithoutFractionalSeconds
Discard the fractional seconds.- Parameters:
p_tz- The time zone to be used.- Returns:
- The date/time with fractional seconds set to zero.
-
asDate
Get the current date, i.e. the instance in time with its UTC time part set to zero.- Returns:
- The current date.
-
asDate
Get the current date, i.e. the instance in time with its time part set to zero in the given time zone.- Parameters:
p_strTimeZone- The time zone to be used.- Returns:
- The current date.
-
asDate
Get the current date, i.e. the instance in time with its time part set to zero in the given time zone.- Parameters:
p_tz- The time zone to be used.- Returns:
- The current date.
-
asTime
Get the current time, i.e. the instance in time with its date set to zero 1970-01-01 in the UTC time zone.- Returns:
- The current time.
-