Uses of Class
jd.util.Date

Packages that use Date
jd.util Contains utility classes. 
 

Uses of Date in jd.util
 

Methods in jd.util that return Date
 Date DateFormat.parse(String text)
          Parses a date from a string representation.
static Date Date.today()
          Return a Date object for the current date.
 Date Date.addYears(int years)
          Return a new Date object representing this date plus the given amount of years.
 Date Date.addMonths(int months)
          Return a new Date object representing this date plus the given amount of months.
 Date Date.addDays(int days)
          Return a new Date object representing this date plus the given amount of days.
static Date Date.fromInteger(int value)
          Extract a date from an integer.
 

Methods in jd.util with parameters of type Date
 String DateFormat.format(Date date)
          Return a string representation of a date.
 void DateFormat.format(Date date, StringBuffer s)
          Return a string representation of a date.
 void DateFormat.format(Date date, StringBuffer s, char ignorePart)
          Return a string representation of a date.
 boolean Date.isBefore(Date d)
          Test if this date is before the given date.
 boolean Date.isAfter(Date d)
          Test if this date is after the given date.
 int Date.difference(Date date)
          Calculate the difference in days between two dates.
 

Constructors in jd.util with parameters of type Date
Date(Date date)
          Create a date from another date.