Java org.apache.commons.lang.time DateFormatUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang.time DateFormatUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang.time DateFormatUtils.

The text is from its open source code.

Field

FastDateFormatISO_DATETIME_FORMAT
ISO8601 formatter for date-time without time zone.
FastDateFormatISO_DATETIME_TIME_ZONE_FORMAT
ISO8601 formatter for date-time with time zone.
FastDateFormatISO_DATE_FORMAT
ISO8601 formatter for date without time zone.
FastDateFormatISO_DATE_TIME_ZONE_FORMAT
ISO8601-like formatter for date with time zone.
FastDateFormatISO_TIME_FORMAT
ISO8601 formatter for time without time zone.
FastDateFormatISO_TIME_NO_T_FORMAT
ISO8601-like formatter for time without time zone.
FastDateFormatSMTP_DATETIME_FORMAT
SMTP (and probably other) date headers.

Constructor

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

Stringformat(long millis, String pattern)

Formats a date/time into a specific pattern.

Stringformat(Date date, String pattern)

Formats a date/time into a specific pattern.

Stringformat(long millis, String pattern, TimeZone timeZone)

Formats a date/time into a specific pattern in a time zone.

Stringformat(Date date, String pattern, TimeZone timeZone)

Formats a date/time into a specific pattern in a time zone.

Stringformat(long millis, String pattern, Locale locale)

Formats a date/time into a specific pattern in a locale.

Stringformat(Date date, String pattern, Locale locale)

Formats a date/time into a specific pattern in a locale.

Stringformat(long millis, String pattern, TimeZone timeZone, Locale locale)

Formats a date/time into a specific pattern in a time zone and locale.

Stringformat(Date date, String pattern, TimeZone timeZone, Locale locale)

Formats a date/time into a specific pattern in a time zone and locale.

StringformatUTC(long millis, String pattern)

Formats a date/time into a specific pattern using the UTC time zone.

StringformatUTC(Date date, String pattern)

Formats a date/time into a specific pattern using the UTC time zone.

StringformatUTC(long millis, String pattern, Locale locale)

Formats a date/time into a specific pattern using the UTC time zone.

StringformatUTC(Date date, String pattern, Locale locale)

Formats a date/time into a specific pattern using the UTC time zone.