Uses of Class
net.sourceforge.calendardate.CalendarDate

Uses of CalendarDate in net.sourceforge.calendardate
 

Fields in net.sourceforge.calendardate declared as CalendarDate
static CalendarDate CalendarDate.EARLIEST
          The earliest date that can be represented by this class (Januray 1, 1600 A.D.)
static CalendarDate CalendarDate.LATEST
          The latest date that can be represented by this class (December 31, 2999 A.D.)
 

Methods in net.sourceforge.calendardate that return CalendarDate
 CalendarDate CalendarDateFormat.parse(java.lang.String source)
          Parses the given string to produce a CalendarDate.
 CalendarDate CalendarDate.addDays(int numDays)
          Returns a new date which is this date offset by numDays.
 CalendarDate CalendarDate.addMonths(int numMonths)
          Adds a given number of months to the date while attempting to keep the day of the month.
 

Methods in net.sourceforge.calendardate with parameters of type CalendarDate
 java.lang.String CalendarDateFormat.format(CalendarDate date)
          Creates a text-based representation of the given date
 int CalendarDate.daysUntil(CalendarDate otherDay)
          Returns the number of days until the given date
 int CalendarDate.monthsUntil(CalendarDate otherDay)
          Returns the number of month changes until the given day.
 boolean CalendarDate.isBefore(CalendarDate other)
          Returns true if this date is before the given date
 boolean CalendarDate.isAfter(CalendarDate other)
          Returns true if this date is after the given date