|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
|
+--java.util.Date
|
+--org.mmbase.module.community.TimeStamp
Creates a timestamp value out of two integer values. Supposedly needed because the Informix setup had no configuration for long values (in which the timestamps are expressed), which means they need be store as two integers instead.
| Constructor Summary | |
TimeStamp()
Deprecated. Creates a TimeStamp based on the current time. |
|
TimeStamp(java.lang.Integer low,
java.lang.Integer high)
Deprecated. Creates a TimeStamp based on a specified time. |
|
TimeStamp(int low,
int high)
Deprecated. Creates a TimeStamp based on a specified time. |
|
TimeStamp(long time)
Deprecated. Creates a TimeStamp based on a specified time. |
|
| Method Summary | |
int |
highIntegerValue()
Deprecated. Retrieve the 16 most significant bits of a time value (a long representing milliseconds since 1/1/1970. |
int |
lowIntegerValue()
Deprecated. Retrieve the 16 least significant bits of a time value (a long representing milliseconds since 1/1/1970. |
| Methods inherited from class java.util.Date |
after, before, clone, compareTo, compareTo, equals, getDate, getDay, getHours, getMinutes, getMonth, getSeconds, getTime, getTimezoneOffset, getYear, hashCode, parse, setDate, setHours, setMinutes, setMonth, setSeconds, setTime, setYear, toGMTString, toLocaleString, toString, UTC |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public TimeStamp()
public TimeStamp(long time)
time - the time in milliseconds since 1/1/1970
public TimeStamp(java.lang.Integer low,
java.lang.Integer high)
low - the 16 least significant bits of a time value (a long
representing milliseconds since 1/1/1970high - the 16 most significant bits of the time value
public TimeStamp(int low,
int high)
low - the 16 least significant bits of a time value (a long
representing milliseconds since 1/1/1970high - the 16 most significant bits of the time value| Method Detail |
public int lowIntegerValue()
public int highIntegerValue()
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||