Class FastDateFormat
- java.lang.Object
-
- java.text.Format
-
- org.sqlite.date.FastDateFormat
-
- All Implemented Interfaces:
Serializable,Cloneable,DateParser,DatePrinter
public class FastDateFormat extends Format implements DateParser, DatePrinter
FastDateFormat is a fast and thread-safe version ofSimpleDateFormat.To obtain an instance of FastDateFormat, use one of the static factory methods:
getInstance(String, TimeZone, Locale),getDateInstance(int, TimeZone, Locale),getTimeInstance(int, TimeZone, Locale), orgetDateTimeInstance(int, int, TimeZone, Locale)Since FastDateFormat is thread safe, you can use a static member instance:
private static final FastDateFormat DATE_FORMATTER = FastDateFormat.getDateTimeInstance(FastDateFormat.LONG, FastDateFormat.SHORT);This class can be used as a direct replacement to
SimpleDateFormatin most formatting and parsing situations. This class is especially useful in multi-threaded server environments.SimpleDateFormatis not thread-safe in any JDK version, nor will it be as Sun have closed the bug/RFE.All patterns are compatible with SimpleDateFormat (except time zones and some year patterns - see below).
Since 3.2, FastDateFormat supports parsing as well as printing.
Java 1.4 introduced a new pattern letter,
'Z', to represent time zones in RFC822 format (eg.+0800or-1100). This pattern letter can be used here (on all JDK versions).In addition, the pattern
'ZZ'has been made to represent ISO 8601 full format time zones (eg.+08:00or-11:00). This introduces a minor incompatibility with Java 1.4, but at a gain of useful functionality.Javadoc cites for the year pattern: For formatting, if the number of pattern letters is 2, the year is truncated to 2 digits; otherwise it is interpreted as a number. Starting with Java 1.7 a pattern of 'Y' or 'YYY' will be formatted as '2003', while it was '03' in former Java versions. FastDateFormat implements the behavior of Java 7.
- Since:
- 2.0
- Version:
- $Id$
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.text.Format
Format.Field
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFastDateFormat(String pattern, TimeZone timeZone, Locale locale)Constructs a new FastDateFormat.protectedFastDateFormat(String pattern, TimeZone timeZone, Locale locale, Date centuryStart)Constructs a new FastDateFormat.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected StringBufferapplyRules(Calendar calendar, StringBuffer buf)Performs the formatting by applying the rules to the specified calendar.booleanequals(Object obj)Compares two objects for equality.Stringformat(long millis)Formats a millisecondlongvalue.StringBufferformat(long millis, StringBuffer buf)Formats a millisecondlongvalue into the suppliedStringBuffer.StringBufferformat(Object obj, StringBuffer toAppendTo, FieldPosition pos)Formats aDate,CalendarorLong(milliseconds) object.Stringformat(Calendar calendar)Formats aCalendarobject.StringBufferformat(Calendar calendar, StringBuffer buf)Formats aCalendarobject into the suppliedStringBuffer.Stringformat(Date date)Formats aDateobject using aGregorianCalendar.StringBufferformat(Date date, StringBuffer buf)Formats aDateobject into the suppliedStringBufferusing aGregorianCalendar.static FastDateFormatgetDateInstance(int style)Gets a date formatter instance using the specified style in the default time zone and locale.static FastDateFormatgetDateInstance(int style, Locale locale)Gets a date formatter instance using the specified style and locale in the default time zone.static FastDateFormatgetDateInstance(int style, TimeZone timeZone)Gets a date formatter instance using the specified style and time zone in the default locale.static FastDateFormatgetDateInstance(int style, TimeZone timeZone, Locale locale)Gets a date formatter instance using the specified style, time zone and locale.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle)Gets a date/time formatter instance using the specified style in the default time zone and locale.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, Locale locale)Gets a date/time formatter instance using the specified style and locale in the default time zone.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone)Gets a date/time formatter instance using the specified style and time zone in the default locale.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone, Locale locale)Gets a date/time formatter instance using the specified style, time zone and locale.static FastDateFormatgetInstance()Gets a formatter instance using the default pattern in the default locale.static FastDateFormatgetInstance(String pattern)Gets a formatter instance using the specified pattern in the default locale.static FastDateFormatgetInstance(String pattern, Locale locale)Gets a formatter instance using the specified pattern and locale.static FastDateFormatgetInstance(String pattern, TimeZone timeZone)Gets a formatter instance using the specified pattern and time zone.static FastDateFormatgetInstance(String pattern, TimeZone timeZone, Locale locale)Gets a formatter instance using the specified pattern, time zone and locale.LocalegetLocale()Gets the locale used by this formatter.intgetMaxLengthEstimate()Gets an estimate for the maximum string length that the formatter will produce.StringgetPattern()Gets the pattern used by this formatter.static FastDateFormatgetTimeInstance(int style)Gets a time formatter instance using the specified style in the default time zone and locale.static FastDateFormatgetTimeInstance(int style, Locale locale)Gets a time formatter instance using the specified style and locale in the default time zone.static FastDateFormatgetTimeInstance(int style, TimeZone timeZone)Gets a time formatter instance using the specified style and time zone in the default locale.static FastDateFormatgetTimeInstance(int style, TimeZone timeZone, Locale locale)Gets a time formatter instance using the specified style, time zone and locale.TimeZonegetTimeZone()Gets the time zone used by this formatter.inthashCode()Returns a hashcode compatible with equals.Dateparse(String source)Equivalent to DateFormat.parse(String).Dateparse(String source, ParsePosition pos)Equivalent to DateFormat.parse(String, ParsePosition).ObjectparseObject(String source, ParsePosition pos)Parse a date/time string according to the given parse position.StringtoString()Gets a debugging string version of this formatter.-
Methods inherited from class java.text.Format
clone, format, formatToCharacterIterator, parseObject
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.sqlite.date.DateParser
parseObject
-
-
-
-
Field Detail
-
FULL
public static final int FULL
FULL locale dependent date or time style.- See Also:
- Constant Field Values
-
LONG
public static final int LONG
LONG locale dependent date or time style.- See Also:
- Constant Field Values
-
MEDIUM
public static final int MEDIUM
MEDIUM locale dependent date or time style.- See Also:
- Constant Field Values
-
SHORT
public static final int SHORT
SHORT locale dependent date or time style.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FastDateFormat
protected FastDateFormat(String pattern, TimeZone timeZone, Locale locale)
Constructs a new FastDateFormat.- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- non-null time zone to uselocale- non-null locale to use- Throws:
NullPointerException- if pattern, timeZone, or locale is null.
-
FastDateFormat
protected FastDateFormat(String pattern, TimeZone timeZone, Locale locale, Date centuryStart)
Constructs a new FastDateFormat.- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- non-null time zone to uselocale- non-null locale to usecenturyStart- The start of the 100 year period to use as the "default century" for 2 digit year parsing. If centuryStart is null, defaults to now - 80 years- Throws:
NullPointerException- if pattern, timeZone, or locale is null.
-
-
Method Detail
-
getInstance
public static FastDateFormat getInstance()
Gets a formatter instance using the default pattern in the default locale.- Returns:
- a date/time formatter
-
getInstance
public static FastDateFormat getInstance(String pattern)
Gets a formatter instance using the specified pattern in the default locale.- Parameters:
pattern-SimpleDateFormatcompatible pattern- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid
-
getInstance
public static FastDateFormat getInstance(String pattern, TimeZone timeZone)
Gets a formatter instance using the specified pattern and time zone.- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- optional time zone, overrides time zone of formatted date- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid
-
getInstance
public static FastDateFormat getInstance(String pattern, Locale locale)
Gets a formatter instance using the specified pattern and locale.- Parameters:
pattern-SimpleDateFormatcompatible patternlocale- optional locale, overrides system locale- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid
-
getInstance
public static FastDateFormat getInstance(String pattern, TimeZone timeZone, Locale locale)
Gets a formatter instance using the specified pattern, time zone and locale.- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- optional time zone, overrides time zone of formatted datelocale- optional locale, overrides system locale- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid ornull
-
getDateInstance
public static FastDateFormat getDateInstance(int style)
Gets a date formatter instance using the specified style in the default time zone and locale.- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORT- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined- Since:
- 2.1
-
getDateInstance
public static FastDateFormat getDateInstance(int style, Locale locale)
Gets a date formatter instance using the specified style and locale in the default time zone.- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORTlocale- optional locale, overrides system locale- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined- Since:
- 2.1
-
getDateInstance
public static FastDateFormat getDateInstance(int style, TimeZone timeZone)
Gets a date formatter instance using the specified style and time zone in the default locale.- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted date- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined- Since:
- 2.1
-
getDateInstance
public static FastDateFormat getDateInstance(int style, TimeZone timeZone, Locale locale)
Gets a date formatter instance using the specified style, time zone and locale.- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted datelocale- optional locale, overrides system locale- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined
-
getTimeInstance
public static FastDateFormat getTimeInstance(int style)
Gets a time formatter instance using the specified style in the default time zone and locale.- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORT- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined- Since:
- 2.1
-
getTimeInstance
public static FastDateFormat getTimeInstance(int style, Locale locale)
Gets a time formatter instance using the specified style and locale in the default time zone.- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORTlocale- optional locale, overrides system locale- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined- Since:
- 2.1
-
getTimeInstance
public static FastDateFormat getTimeInstance(int style, TimeZone timeZone)
Gets a time formatter instance using the specified style and time zone in the default locale.- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted time- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined- Since:
- 2.1
-
getTimeInstance
public static FastDateFormat getTimeInstance(int style, TimeZone timeZone, Locale locale)
Gets a time formatter instance using the specified style, time zone and locale.- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted timelocale- optional locale, overrides system locale- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined
-
getDateTimeInstance
public static FastDateFormat getDateTimeInstance(int dateStyle, int timeStyle)
Gets a date/time formatter instance using the specified style in the default time zone and locale.- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORT- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined- Since:
- 2.1
-
getDateTimeInstance
public static FastDateFormat getDateTimeInstance(int dateStyle, int timeStyle, Locale locale)
Gets a date/time formatter instance using the specified style and locale in the default time zone.- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORTlocale- optional locale, overrides system locale- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined- Since:
- 2.1
-
getDateTimeInstance
public static FastDateFormat getDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone)
Gets a date/time formatter instance using the specified style and time zone in the default locale.- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted date- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined- Since:
- 2.1
-
getDateTimeInstance
public static FastDateFormat getDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone, Locale locale)
Gets a date/time formatter instance using the specified style, time zone and locale.- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted datelocale- optional locale, overrides system locale- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined
-
format
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
Formats aDate,CalendarorLong(milliseconds) object.- Specified by:
formatin interfaceDatePrinter- Specified by:
formatin classFormat- Parameters:
obj- the object to formattoAppendTo- the buffer to append topos- the position - ignored- Returns:
- the buffer passed in
-
format
public String format(long millis)
Formats a millisecondlongvalue.- Specified by:
formatin interfaceDatePrinter- Parameters:
millis- the millisecond value to format- Returns:
- the formatted string
- Since:
- 2.1
-
format
public String format(Date date)
Formats aDateobject using aGregorianCalendar.- Specified by:
formatin interfaceDatePrinter- Parameters:
date- the date to format- Returns:
- the formatted string
-
format
public String format(Calendar calendar)
Formats aCalendarobject.- Specified by:
formatin interfaceDatePrinter- Parameters:
calendar- the calendar to format- Returns:
- the formatted string
-
format
public StringBuffer format(long millis, StringBuffer buf)
Formats a millisecondlongvalue into the suppliedStringBuffer.- Specified by:
formatin interfaceDatePrinter- Parameters:
millis- the millisecond value to formatbuf- the buffer to format into- Returns:
- the specified string buffer
- Since:
- 2.1
-
format
public StringBuffer format(Date date, StringBuffer buf)
Formats aDateobject into the suppliedStringBufferusing aGregorianCalendar.- Specified by:
formatin interfaceDatePrinter- Parameters:
date- the date to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
format
public StringBuffer format(Calendar calendar, StringBuffer buf)
Formats aCalendarobject into the suppliedStringBuffer.- Specified by:
formatin interfaceDatePrinter- Parameters:
calendar- the calendar to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
parse
public Date parse(String source) throws ParseException
Description copied from interface:DateParserEquivalent to DateFormat.parse(String).See
DateFormat.parse(String)for more information.- Specified by:
parsein interfaceDateParser- Parameters:
source- AStringwhose beginning should be parsed.- Returns:
- A
Dateparsed from the string - Throws:
ParseException- if the beginning of the specified string cannot be parsed.
-
parse
public Date parse(String source, ParsePosition pos)
Description copied from interface:DateParserEquivalent to DateFormat.parse(String, ParsePosition).See
DateFormat.parse(String, ParsePosition)for more information.- Specified by:
parsein interfaceDateParser- Parameters:
source- AString, part of which should be parsed.pos- AParsePositionobject with index and error index information as described above.- Returns:
- A
Dateparsed from the string. In case of error, returns null.
-
parseObject
public Object parseObject(String source, ParsePosition pos)
Description copied from interface:DateParserParse a date/time string according to the given parse position.- Specified by:
parseObjectin interfaceDateParser- Specified by:
parseObjectin classFormat- Parameters:
source- AStringwhose beginning should be parsed.pos- the parse position- Returns:
- a
java.util.Dateobject - See Also:
DateFormat.parseObject(String, ParsePosition)
-
getPattern
public String getPattern()
Gets the pattern used by this formatter.- Specified by:
getPatternin interfaceDateParser- Specified by:
getPatternin interfaceDatePrinter- Returns:
- the pattern,
SimpleDateFormatcompatible
-
getTimeZone
public TimeZone getTimeZone()
Gets the time zone used by this formatter.This zone is always used for
Dateformatting.- Specified by:
getTimeZonein interfaceDateParser- Specified by:
getTimeZonein interfaceDatePrinter- Returns:
- the time zone
-
getLocale
public Locale getLocale()
Gets the locale used by this formatter.- Specified by:
getLocalein interfaceDateParser- Specified by:
getLocalein interfaceDatePrinter- Returns:
- the locale
-
getMaxLengthEstimate
public int getMaxLengthEstimate()
Gets an estimate for the maximum string length that the formatter will produce.The actual formatted length will almost always be less than or equal to this amount.
- Returns:
- the maximum formatted length
-
equals
public boolean equals(Object obj)
Compares two objects for equality.
-
hashCode
public int hashCode()
Returns a hashcode compatible with equals.
-
toString
public String toString()
Gets a debugging string version of this formatter.
-
applyRules
protected StringBuffer applyRules(Calendar calendar, StringBuffer buf)
Performs the formatting by applying the rules to the specified calendar.- Parameters:
calendar- the calendar to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
-