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

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

Introduction

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

The text is from its open source code.

Field

intFULL
FULL locale dependent date or time style.
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(long millis)

Formats a millisecond long value.

Stringformat(Date date)

Formats a Date object.

Stringformat(Calendar calendar)

Formats a Calendar object.

FastDateFormatgetDateInstance(int style)

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

FastDateFormatgetDateInstance(int style, TimeZone timeZone, Locale locale)

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

FastDateFormatgetDateInstance(int style, Locale locale)

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

FastDateFormatgetDateInstance(int style, TimeZone timeZone)

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

FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, Locale locale)

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

FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone)

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

FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle)

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

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

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

FastDateFormatgetInstance()

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

FastDateFormatgetInstance(String pattern)

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

FastDateFormatgetInstance(String pattern, TimeZone timeZone, Locale locale)

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

FastDateFormatgetInstance(String pattern, TimeZone timeZone)

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

FastDateFormatgetInstance(String pattern, Locale locale)

Gets a formatter instance using the specified pattern and locale.

StringgetPattern()

Gets the pattern used by this formatter.

FastDateFormatgetTimeInstance(int style, TimeZone timeZone, Locale locale)

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

FastDateFormatgetTimeInstance(int style, Locale locale)

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

FastDateFormatgetTimeInstance(int style, TimeZone timeZone)

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

FastDateFormatgetTimeInstance(int style)

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

ObjectparseObject(String source)
Parses text from the beginning of the given string to produce an object.