Interface TimestampObject

All Superinterfaces:
AtomicObject, ChronologicObject, DataObject, PropertyHandler
All Known Implementing Classes:
TimestampObjectImpl

public interface TimestampObject extends ChronologicObject
A TimestampObject represents a date and time as value.

The native object is java.sql.Timestamp and not java.util.Date to be consistent with DateObject and TimeObject.

Attention:

 Timestamp timestamp = new Timestamp();
 setNativeTimestamp(timestamp);
 timestamp == getNativeTimestamp(); // fails, because of internal reformating
 

A detailed description can be found in the TimestampClass.

Author:
Rainer Maximini
See Also: