|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.jrefinery.data.TimePeriod
com.jrefinery.data.Day
public class Day
Represents a single day in the range 1-Jan-1900 to 31-Dec-9999.
This class is immutable, which is a requirement for all TimePeriod subclasses.
| Field Summary | |
|---|---|
protected static java.text.DateFormat |
dateFormatLong
A date formatter for the default locale. |
protected static java.text.DateFormat |
dateFormatMedium
A date formatter for the default locale. |
protected static java.text.DateFormat |
dateFormatShort
A date formatter for the default locale. |
protected SerialDate |
serialDate
The day (uses SerialDate for convenience). |
protected static java.text.DateFormat |
standardDateFormat
A standard date formatter. |
| 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 | |
|---|---|
Day()
Constructs a Day, based on the system date/time. |
|
Day(java.util.Date time)
Constructs a new Day, based on a particular date/time and the default time zone. |
|
Day(java.util.Date time,
java.util.TimeZone zone)
Constructs a Day, based on a particular date/time and time zone. |
|
Day(int day,
int month,
int year)
Constructs a new one day time period. |
|
Day(SerialDate serialDate)
Constructs a new one day time period. |
|
| Method Summary | |
|---|---|
int |
compareTo(java.lang.Object o1)
Returns an integer indicating the order of this Day object relative to the specified object: negative == before, zero == same, positive == after. |
boolean |
equals(java.lang.Object object)
Tests the equality of this Day object to an arbitrary object. |
int |
getDayOfMonth()
Returns the day of the month. |
long |
getEnd(java.util.Calendar calendar)
Returns the last millisecond of the day, evaluated using the supplied calendar (which determines the time zone). |
int |
getMonth()
Returns the month. |
SerialDate |
getSerialDate()
Returns the day as a SerialDate. |
long |
getStart(java.util.Calendar calendar)
Returns the first millisecond of the day, evaluated using the supplied calendar (which determines the time zone). |
int |
getYear()
Returns the year. |
static void |
main(java.lang.String[] args)
Test code - please ignore. |
TimePeriod |
next()
Returns the day following this one, or null if some limit has been reached. |
static Day |
parseDay(java.lang.String s)
Parses the string argument as a day. |
TimePeriod |
previous()
Returns the day preceding this one. |
java.lang.String |
toString()
Returns a string representing the day. |
| Methods inherited from class com.jrefinery.data.TimePeriod |
|---|
getEnd, getEnd, getMiddle, getMiddle, getMiddle, getStart, getStart |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected static final java.text.DateFormat standardDateFormat
protected static final java.text.DateFormat dateFormatShort
protected static final java.text.DateFormat dateFormatMedium
protected static final java.text.DateFormat dateFormatLong
protected SerialDate serialDate
| Constructor Detail |
|---|
public Day()
public Day(int day,
int month,
int year)
day - The day-of-the-month.month - The month (1 to 12).year - The year (1900 <= year <= 9999).public Day(SerialDate serialDate)
day - The day.public Day(java.util.Date time)
time - The time.
public Day(java.util.Date time,
java.util.TimeZone zone)
time - The date/time.zone - The time zone.| Method Detail |
|---|
public SerialDate getSerialDate()
Implementation note: the reference that is returned should be an instance of an immutable SerialDate (otherwise the caller could use the reference to alter the state of this Day instance, and Day is supposed to be immutable).
public int getYear()
public int getMonth()
public int getDayOfMonth()
public boolean equals(java.lang.Object object)
equals in class java.lang.Objectobject - The object.
public TimePeriod previous()
previous in class TimePeriodpublic TimePeriod next()
next in class TimePeriodpublic int compareTo(java.lang.Object o1)
public java.lang.String toString()
toString in class java.lang.Objectpublic static Day parseDay(java.lang.String s)
This method is required to recognise YYYY-MM-DD as a valid format. Anything else, for now, is a bonus.
public long getStart(java.util.Calendar calendar)
getStart in class TimePeriodcalendar - The calendar.
public long getEnd(java.util.Calendar calendar)
getEnd in class TimePeriodcalendar - The calendar.
public static void main(java.lang.String[] args)
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||