| java.lang.Object org.jfree.date.DateUtilities
DateUtilities | public class DateUtilities (Code) | | Some useful date methods.
author: David Gilbert. |
Method Summary | |
public static synchronized Date | createDate(int yyyy, int month, int day) Creates a date.
Parameters: yyyy - the year. Parameters: month - the month (1 - 12). Parameters: day - the day. | public static synchronized Date | createDate(int yyyy, int month, int day, int hour, int min) Creates a date.
Parameters: yyyy - the year. Parameters: month - the month (1 - 12). Parameters: day - the day. Parameters: hour - the hour. Parameters: min - the minute. |
createDate | public static synchronized Date createDate(int yyyy, int month, int day)(Code) | | Creates a date.
Parameters: yyyy - the year. Parameters: month - the month (1 - 12). Parameters: day - the day. a date. |
createDate | public static synchronized Date createDate(int yyyy, int month, int day, int hour, int min)(Code) | | Creates a date.
Parameters: yyyy - the year. Parameters: month - the month (1 - 12). Parameters: day - the day. Parameters: hour - the hour. Parameters: min - the minute. a date. |
|
|