|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.jrefinery.data.TimePeriod | +--com.jrefinery.data.Millisecond
Represents a millisecond.
This class is immutable, which is a requirement for all TimePeriod subclasses.
Field Summary | |
static int |
FIRST_MILLISECOND_IN_SECOND
A constant for the first millisecond in a second. |
static int |
LAST_MILLISECOND_IN_SECOND
A constant for the last millisecond in a second. |
Fields inherited from class com.jrefinery.data.TimePeriod |
DEFAULT_TIME_ZONE, WORKING_CALENDAR |
Fields inherited from interface com.jrefinery.date.MonthConstants |
APRIL, AUGUST, DECEMBER, FEBRUARY, JANUARY, JULY, JUNE, MARCH, MAY, NOVEMBER, OCTOBER, SEPTEMBER |
Constructor Summary | |
Millisecond()
Constructs a millisecond based on the current system time. |
|
Millisecond(java.util.Date time)
Constructs a millisecond. |
|
Millisecond(java.util.Date time,
java.util.TimeZone zone)
Creates a millisecond. |
|
Millisecond(int millisecond,
Second second)
Constructs a millisecond. |
Method Summary | |
int |
compareTo(java.lang.Object o1)
Returns an integer indicating the order of this Millisecond object relative to the specified object: negative == before, zero == same, positive == after. |
boolean |
equals(java.lang.Object object)
Tests the equality of this object against an arbitrary Object. |
long |
getEnd()
Returns the last millisecond of the time period. |
long |
getEnd(java.util.Calendar calendar)
Returns the last millisecond of the time period. |
long |
getMillisecond()
Returns the millisecond. |
Second |
getSecond()
Returns the second. |
long |
getSerialIndex()
Returns a serial index number for the millisecond. |
long |
getStart()
Returns the first millisecond of the time period. |
long |
getStart(java.util.Calendar calendar)
Returns the first millisecond of the time period. |
TimePeriod |
next()
Returns the millisecond following this one. |
TimePeriod |
previous()
Returns the millisecond preceding this one. |
java.lang.String |
toString()
Returns a string representation of the millisecond. |
Methods inherited from class com.jrefinery.data.TimePeriod |
getEnd, getMiddle, getMiddle, getMiddle, getStart |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final int FIRST_MILLISECOND_IN_SECOND
public static final int LAST_MILLISECOND_IN_SECOND
Constructor Detail |
public Millisecond()
public Millisecond(int millisecond, Second second)
millisecond
- the millisecond (0-999).second
- the second.public Millisecond(java.util.Date time)
time
- the time.public Millisecond(java.util.Date time, java.util.TimeZone zone)
time
- the instant in time.zone
- the time zone.Method Detail |
public Second getSecond()
public long getMillisecond()
public TimePeriod previous()
previous
in class TimePeriod
public TimePeriod next()
next
in class TimePeriod
public long getSerialIndex()
getSerialIndex
in class TimePeriod
public boolean equals(java.lang.Object object)
This method will return true ONLY if the object is a Millisecond object representing the same millisecond as this instance.
equals
in class java.lang.Object
object
- the object to comparetrue
if milliseconds and seconds of this and object
are the same.public int compareTo(java.lang.Object o1)
o1
- the object to comparepublic long getStart()
getStart
in class TimePeriod
public long getStart(java.util.Calendar calendar)
getStart
in class TimePeriod
calendar
- the calendar.public long getEnd()
getEnd
in class TimePeriod
public long getEnd(java.util.Calendar calendar)
getEnd
in class TimePeriod
calendar
- the calendar.public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |