Package org.jfree.data.time
Class FixedMillisecond
java.lang.Object
org.jfree.data.time.RegularTimePeriod
org.jfree.data.time.FixedMillisecond
- All Implemented Interfaces:
Serializable
,Comparable
,MonthConstants
,TimePeriod
Wrapper for a
java.util.Date
object that allows it to be used
as a RegularTimePeriod
. This class is immutable, which is a
requirement for all RegularTimePeriod
subclasses.- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionConstructs a millisecond based on the current system time.FixedMillisecond
(long millisecond) Constructs a millisecond.FixedMillisecond
(Date time) Constructs a millisecond. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an integer indicating the order of this Millisecond object relative to the specified object: negative == before, zero == same, positive == after.boolean
Tests the equality of this object against an arbitrary Object.long
Returns the first millisecond of the time period.long
getFirstMillisecond
(Calendar calendar) Returns the first millisecond of the time period.long
Returns the last millisecond of the time period.long
getLastMillisecond
(Calendar calendar) Returns the last millisecond of the time period.long
Returns the millisecond closest to the middle of the time period.long
getMiddleMillisecond
(Calendar calendar) Returns the millisecond closest to the middle of the time period.long
Returns a serial index number for the millisecond.getTime()
Returns the date/time (creates a newDate
instance each time this method is called).int
hashCode()
Returns a hash code for this object instance.next()
Returns the millisecond following this one.void
This method is overridden to do nothing.previous()
Returns the millisecond preceding this one.Methods inherited from class org.jfree.data.time.RegularTimePeriod
createInstance, downsize, getCalendarInstance, getEnd, getMillisecond, getStart, setCalendarInstancePrototype, setThreadLocalCalendarInstance, toString
-
Constructor Details
-
FixedMillisecond
public FixedMillisecond()Constructs a millisecond based on the current system time. -
FixedMillisecond
Constructs a millisecond.- Parameters:
millisecond
- the millisecond (same encoding as java.util.Date).
-
FixedMillisecond
Constructs a millisecond.- Parameters:
time
- the time (null
not permitted).
-
-
Method Details
-
getTime
Returns the date/time (creates a newDate
instance each time this method is called).- Returns:
- The date/time.
-
peg
This method is overridden to do nothing.- Specified by:
peg
in classRegularTimePeriod
- Parameters:
calendar
- ignored
-
previous
Returns the millisecond preceding this one.- Specified by:
previous
in classRegularTimePeriod
- Returns:
- The millisecond preceding this one.
-
next
Returns the millisecond following this one.- Specified by:
next
in classRegularTimePeriod
- Returns:
- The millisecond following this one.
-
equals
Tests the equality of this object against an arbitrary Object. -
hashCode
Returns a hash code for this object instance. -
compareTo
Returns an integer indicating the order of this Millisecond object relative to the specified object: negative == before, zero == same, positive == after.- Specified by:
compareTo
in interfaceComparable
- Parameters:
o1
- the object to compare.- Returns:
- negative == before, zero == same, positive == after.
-
getFirstMillisecond
Returns the first millisecond of the time period.- Specified by:
getFirstMillisecond
in classRegularTimePeriod
- Returns:
- The first millisecond of the time period.
- See Also:
-
getFirstMillisecond
Returns the first millisecond of the time period.- Specified by:
getFirstMillisecond
in classRegularTimePeriod
- Parameters:
calendar
- the calendar.- Returns:
- The first millisecond of the time period.
- See Also:
-
getLastMillisecond
Returns the last millisecond of the time period.- Specified by:
getLastMillisecond
in classRegularTimePeriod
- Returns:
- The last millisecond of the time period.
- See Also:
-
getLastMillisecond
Returns the last millisecond of the time period.- Specified by:
getLastMillisecond
in classRegularTimePeriod
- Parameters:
calendar
- the calendar.- Returns:
- The last millisecond of the time period.
- See Also:
-
getMiddleMillisecond
Returns the millisecond closest to the middle of the time period.- Overrides:
getMiddleMillisecond
in classRegularTimePeriod
- Returns:
- The millisecond closest to the middle of the time period.
-
getMiddleMillisecond
Returns the millisecond closest to the middle of the time period.- Overrides:
getMiddleMillisecond
in classRegularTimePeriod
- Parameters:
calendar
- the calendar.- Returns:
- The millisecond closest to the middle of the time period.
-
getSerialIndex
Returns a serial index number for the millisecond.- Specified by:
getSerialIndex
in classRegularTimePeriod
- Returns:
- The serial index number.
-