|
Groovy JDK |
Method Summary | |
---|---|
String
|
format(String format)
Return a String representing this date in the given format |
int
|
getAt(int field)
Support the subscript operator for a Date |
String
|
getDateString()
Return a string representation of the 'day' portion of this date according to the locale-specific format used by {@link DateFormat} |
String
|
getDateTimeString()
Return a string representation of the date and time time portion of this Date instance, according to the locale-specific format used by {@link DateFormat} preset for the day portion and {@link DateFormat#MEDIUM} for the time portion of the string |
String
|
getTimeString()
Return a string representation of the time portion of this date according to the locale-specific format used by {@link DateFormat} |
Date
|
minus(int days)
Subtract a number of days from this date and returns the new date |
Date
|
next()
Increment a Date by one day |
static Date
|
parse(String format, String input)
This convenience method acts as a wrapper for {@link SimpleDateFormat} |
Date
|
plus(int days)
Add a number of days to this date and returns the new date |
Date
|
previous()
Decrement a Date by one day |
Method Detail |
---|
public String format(String format)
format
- the format pattern to use according to {@link SimpleDateFormat}.
public int getAt(int field)
field
- a Calendar field, e.g. MONTH.
public String getDateString()
public String getDateTimeString()
public String getTimeString()
public Date minus(int days)
days
- the number of days to subtract.
public Date next()
public static Date parse(String format, String input)
format
- pattern used to parse the input string..
input
- String to be parsed to create the date instance.
public Date plus(int days)
days
- the number of days to increase.
public Date previous()
|
Groovy JDK |