Java org.apache.commons.lang3.time FastDateFormat fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.commons.lang3.time.FastDateFormat has subclasses.
Click this link to see all its subclasses.

Field

intLONG
LONG locale dependent date or time style.
intMEDIUM
MEDIUM locale dependent date or time style.
intSHORT
SHORT locale dependent date or time style.

Method

Stringformat(final long millis)

Formats a millisecond long value.

Stringformat(final Date date)

Formats a Date object using a GregorianCalendar .

Stringformat(final Calendar calendar)

Formats a Calendar object.

FastDateFormatgetDateInstance(final int style, final Locale locale)

Gets a date formatter instance using the specified style and locale in the default time zone.

FastDateFormatgetDateInstance(final int style, final TimeZone timeZone)

Gets a date formatter instance using the specified style and time zone in the default locale.

FastDateFormatgetDateInstance(final int style, final TimeZone timeZone, final Locale locale)

Gets a date formatter instance using the specified style, time zone and locale.

FastDateFormatgetDateInstance(final int style)

Gets a date formatter instance using the specified style in the default time zone and locale.

FastDateFormatgetDateTimeInstance(final int dateStyle, final int timeStyle, final TimeZone timeZone, final Locale locale)

Gets a date/time formatter instance using the specified style, time zone and locale.

FastDateFormatgetDateTimeInstance(final int dateStyle, final int timeStyle)

Gets a date/time formatter instance using the specified style in the default time zone and locale.

FastDateFormatgetDateTimeInstance(final int dateStyle, final int timeStyle, final Locale locale)

Gets a date/time formatter instance using the specified style and locale in the default time zone.

FastDateFormatgetDateTimeInstance(final int dateStyle, final int timeStyle, final TimeZone timeZone)

Gets a date/time formatter instance using the specified style and time zone in the default locale.

FastDateFormatgetInstance(final String pattern)

Gets a formatter instance using the specified pattern in the default locale.

FastDateFormatgetInstance(final String pattern, final TimeZone timeZone)

Gets a formatter instance using the specified pattern and time zone.

FastDateFormatgetInstance(final String pattern, final Locale locale)

Gets a formatter instance using the specified pattern and locale.

FastDateFormatgetInstance(final String pattern, final TimeZone timeZone, final Locale locale)

Gets a formatter instance using the specified pattern, time zone and locale.

StringgetPattern()

Gets the pattern used by this formatter.

FastDateFormatgetTimeInstance(final int style, final Locale locale)

Gets a time formatter instance using the specified style and locale in the default time zone.

FastDateFormatgetTimeInstance(final int style, final TimeZone timeZone)

Gets a time formatter instance using the specified style and time zone in the default locale.

FastDateFormatgetTimeInstance(final int style)

Gets a time formatter instance using the specified style in the default time zone and locale.

Dateparse(final String source)
Dateparse(final String source, final ParsePosition pos)