- java.lang.Object
-
- org.sqlite.date.FastDatePrinter
-
- All Implemented Interfaces:
Serializable,DatePrinter
public class FastDatePrinter extends Object implements DatePrinter, Serializable
FastDatePrinter is a fast and thread-safe version ofSimpleDateFormat.To obtain a FastDatePrinter, use
FastDateFormat.getInstance(String, TimeZone, Locale)or another variation of the factory methods ofFastDateFormat.Since FastDatePrinter is thread safe, you can use a static member instance:
private static final DatePrinter DATE_PRINTER = FastDateFormat.getInstance("yyyy-MM-dd");This class can be used as a direct replacement to
SimpleDateFormatin most formatting 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.Only formatting is supported by this class, but all patterns are compatible with SimpleDateFormat (except time zones and some year patterns - see below).
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.Starting with JDK7, ISO 8601 support was added using the pattern
'X'. To maintain compatibility,'ZZ'will continue to be supported, but using one of the'X'formats is recommended.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. FastDatePrinter implements the behavior of Java 7.
- Since:
- 3.2
- Version:
- $Id$
- See Also:
FastDateParser, Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFastDatePrinter(String pattern, TimeZone timeZone, Locale locale)Constructs a new FastDatePrinter.
-
Method Summary
All 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 milliseondlongvalue 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.LocalegetLocale()Gets the locale used by this printer.intgetMaxLengthEstimate()Gets an estimate for the maximum string length that the formatter will produce.StringgetPattern()Gets the pattern used by this printer.TimeZonegetTimeZone()Gets the time zone used by this printer.inthashCode()Returns a hashcode compatible with equals.protected List<org.sqlite.date.FastDatePrinter.Rule>parsePattern()Returns a list of Rules given a pattern.protected StringparseToken(String pattern, int[] indexRef)Performs the parsing of tokens.protected org.sqlite.date.FastDatePrinter.NumberRuleselectNumberRule(int field, int padding)Gets an appropriate rule for the padding required.StringtoString()Gets a debugging string version of this formatter.
-
-
-
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
-
FastDatePrinter
protected FastDatePrinter(String pattern, TimeZone timeZone, Locale locale)
Constructs a new FastDatePrinter. UseFastDateFormat.getInstance(String, TimeZone, Locale)or another variation of the factory methods ofFastDateFormatto get a cached FastDatePrinter instance.- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- non-null time zone to uselocale- non-null locale to use- Throws:
NullPointerException- if pattern, timeZone, or locale is null.
-
-
Method Detail
-
parsePattern
protected List<org.sqlite.date.FastDatePrinter.Rule> parsePattern()
Returns a list of Rules given a pattern.- Returns:
- a
Listof Rule objects - Throws:
IllegalArgumentException- if pattern is invalid
-
parseToken
protected String parseToken(String pattern, int[] indexRef)
Performs the parsing of tokens.- Parameters:
pattern- the patternindexRef- index references- Returns:
- parsed token
-
selectNumberRule
protected org.sqlite.date.FastDatePrinter.NumberRule selectNumberRule(int field, int padding)Gets an appropriate rule for the padding required.- Parameters:
field- the field to get a rule forpadding- the padding required- Returns:
- a new rule with the correct padding
-
format
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
Formats aDate,CalendarorLong(milliseconds) object.- Specified by:
formatin interfaceDatePrinter- 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)
Description copied from interface:DatePrinterFormats a millisecondlongvalue.- Specified by:
formatin interfaceDatePrinter- Parameters:
millis- the millisecond value to format- Returns:
- the formatted string
-
format
public String format(Date date)
Description copied from interface:DatePrinterFormats aDateobject using aGregorianCalendar.- Specified by:
formatin interfaceDatePrinter- Parameters:
date- the date to format- Returns:
- the formatted string
-
format
public String format(Calendar calendar)
Description copied from interface:DatePrinterFormats aCalendarobject.- Specified by:
formatin interfaceDatePrinter- Parameters:
calendar- the calendar to format- Returns:
- the formatted string
-
format
public StringBuffer format(long millis, StringBuffer buf)
Description copied from interface:DatePrinterFormats a milliseondlongvalue into the suppliedStringBuffer.- Specified by:
formatin interfaceDatePrinter- Parameters:
millis- the millisecond value to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
format
public StringBuffer format(Date date, StringBuffer buf)
Description copied from interface:DatePrinterFormats 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)
Description copied from interface:DatePrinterFormats aCalendarobject into the suppliedStringBuffer.- Specified by:
formatin interfaceDatePrinter- Parameters:
calendar- the calendar to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
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
-
getPattern
public String getPattern()
Description copied from interface:DatePrinterGets the pattern used by this printer.- Specified by:
getPatternin interfaceDatePrinter- Returns:
- the pattern,
SimpleDateFormatcompatible
-
getTimeZone
public TimeZone getTimeZone()
Description copied from interface:DatePrinterGets the time zone used by this printer.This zone is always used for
Dateprinting.- Specified by:
getTimeZonein interfaceDatePrinter- Returns:
- the time zone
-
getLocale
public Locale getLocale()
Description copied from interface:DatePrinterGets the locale used by this printer.- 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.
-
-