|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.lang.time.DateFormatUtils
public class DateFormatUtils
Date and time formatting utilities and constants.
Formatting is performed using the
FastDateFormat
class.
Field Summary | |
---|---|
static FastDateFormat |
ISO_DATE_FORMAT
ISO8601 formatter for date without time zone. |
static FastDateFormat |
ISO_DATE_TIME_ZONE_FORMAT
ISO8601-like formatter for date with time zone. |
static FastDateFormat |
ISO_DATETIME_FORMAT
ISO8601 formatter for date-time without time zone. |
static FastDateFormat |
ISO_DATETIME_TIME_ZONE_FORMAT
ISO8601 formatter for date-time with time zone. |
static FastDateFormat |
ISO_TIME_FORMAT
ISO8601 formatter for time without time zone. |
static FastDateFormat |
ISO_TIME_NO_T_FORMAT
ISO8601-like formatter for time without time zone. |
static FastDateFormat |
ISO_TIME_NO_T_TIME_ZONE_FORMAT
ISO8601-like formatter for time with time zone. |
static FastDateFormat |
ISO_TIME_TIME_ZONE_FORMAT
ISO8601 formatter for time with time zone. |
static FastDateFormat |
SMTP_DATETIME_FORMAT
SMTP (and probably other) date headers. |
Constructor Summary | |
---|---|
DateFormatUtils()
DateFormatUtils instances should NOT be constructed in standard programming. |
Method Summary | |
---|---|
static String |
format(Date date,
String pattern)
Formats a date/time into a specific pattern. |
static String |
format(Date date,
String pattern,
Locale locale)
Formats a date/time into a specific pattern in a locale. |
static String |
format(Date date,
String pattern,
TimeZone timeZone)
Formats a date/time into a specific pattern in a time zone. |
static String |
format(Date date,
String pattern,
TimeZone timeZone,
Locale locale)
Formats a date/time into a specific pattern in a time zone and locale. |
static String |
format(long millis,
String pattern)
Formats a date/time into a specific pattern. |
static String |
format(long millis,
String pattern,
Locale locale)
Formats a date/time into a specific pattern in a locale. |
static String |
format(long millis,
String pattern,
TimeZone timeZone)
Formats a date/time into a specific pattern in a time zone. |
static String |
format(long millis,
String pattern,
TimeZone timeZone,
Locale locale)
Formats a date/time into a specific pattern in a time zone and locale. |
static String |
formatUTC(Date date,
String pattern)
Formats a date/time into a specific pattern using the UTC time zone. |
static String |
formatUTC(Date date,
String pattern,
Locale locale)
Formats a date/time into a specific pattern using the UTC time zone. |
static String |
formatUTC(long millis,
String pattern)
Formats a date/time into a specific pattern using the UTC time zone. |
static String |
formatUTC(long millis,
String pattern,
Locale locale)
Formats a date/time into a specific pattern using the UTC time zone. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final FastDateFormat ISO_DATETIME_FORMAT
public static final FastDateFormat ISO_DATETIME_TIME_ZONE_FORMAT
public static final FastDateFormat ISO_DATE_FORMAT
public static final FastDateFormat ISO_DATE_TIME_ZONE_FORMAT
public static final FastDateFormat ISO_TIME_FORMAT
public static final FastDateFormat ISO_TIME_TIME_ZONE_FORMAT
public static final FastDateFormat ISO_TIME_NO_T_FORMAT
public static final FastDateFormat ISO_TIME_NO_T_TIME_ZONE_FORMAT
public static final FastDateFormat SMTP_DATETIME_FORMAT
Constructor Detail |
---|
public DateFormatUtils()
DateFormatUtils instances should NOT be constructed in standard programming.
This constructor is public to permit tools that require a JavaBean instance to operate.
Method Detail |
---|
public static String formatUTC(long millis, String pattern)
Formats a date/time into a specific pattern using the UTC time zone.
millis
- the date to format expressed in millisecondspattern
- the pattern to use to format the date
public static String formatUTC(Date date, String pattern)
Formats a date/time into a specific pattern using the UTC time zone.
date
- the date to formatpattern
- the pattern to use to format the date
public static String formatUTC(long millis, String pattern, Locale locale)
Formats a date/time into a specific pattern using the UTC time zone.
millis
- the date to format expressed in millisecondspattern
- the pattern to use to format the datelocale
- the locale to use, may be null
public static String formatUTC(Date date, String pattern, Locale locale)
Formats a date/time into a specific pattern using the UTC time zone.
date
- the date to formatpattern
- the pattern to use to format the datelocale
- the locale to use, may be null
public static String format(long millis, String pattern)
Formats a date/time into a specific pattern.
millis
- the date to format expressed in millisecondspattern
- the pattern to use to format the date
public static String format(Date date, String pattern)
Formats a date/time into a specific pattern.
date
- the date to formatpattern
- the pattern to use to format the date
public static String format(long millis, String pattern, TimeZone timeZone)
Formats a date/time into a specific pattern in a time zone.
millis
- the time expressed in millisecondspattern
- the pattern to use to format the datetimeZone
- the time zone to use, may be null
public static String format(Date date, String pattern, TimeZone timeZone)
Formats a date/time into a specific pattern in a time zone.
date
- the date to formatpattern
- the pattern to use to format the datetimeZone
- the time zone to use, may be null
public static String format(long millis, String pattern, Locale locale)
Formats a date/time into a specific pattern in a locale.
millis
- the date to format expressed in millisecondspattern
- the pattern to use to format the datelocale
- the locale to use, may be null
public static String format(Date date, String pattern, Locale locale)
Formats a date/time into a specific pattern in a locale.
date
- the date to formatpattern
- the pattern to use to format the datelocale
- the locale to use, may be null
public static String format(long millis, String pattern, TimeZone timeZone, Locale locale)
Formats a date/time into a specific pattern in a time zone and locale.
millis
- the date to format expressed in millisecondspattern
- the pattern to use to format the datetimeZone
- the time zone to use, may be null
locale
- the locale to use, may be null
public static String format(Date date, String pattern, TimeZone timeZone, Locale locale)
Formats a date/time into a specific pattern in a time zone and locale.
date
- the date to formatpattern
- the pattern to use to format the datetimeZone
- the time zone to use, may be null
locale
- the locale to use, may be null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |