Class FastDatePrinter
- All Implemented Interfaces:
Serializable, DatePrinter
FastDatePrinter is a fast and thread-safe version of
SimpleDateFormat.
To obtain a FastDatePrinter, use FastDateFormat.getInstance(String, TimeZone, Locale)
or another variation of the factory methods of FastDateFormat.
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
SimpleDateFormat in most formatting situations.
This class is especially useful in multi-threaded server environments.
SimpleDateFormat is 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. +0800 or -1100).
This pattern letter can be used here (on all JDK versions).
In addition, the pattern 'ZZ' has been made to represent
ISO 8601 extended format time zones (eg. +08:00 or -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.
Copied and modified from Apache Commons Lang.
- Since:
- Apache Commons Lang 3.2
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static classDeprecated.Inner class to output a constant single character.private static classDeprecated.Inner class to output the numeric day in week.private static classDeprecated.Inner class to output a time zone as a number+/-HHMMor+/-HH:MM.private static interfaceDeprecated.Inner class defining a numeric rule.private static classDeprecated.Inner class to output a padded number.private static interfaceDeprecated.Inner class defining a rule.private static classDeprecated.Inner class to output a constant string.private static classDeprecated.Inner class to output one of a set of values.private static classDeprecated.Inner class that acts as a compound key for time zone names.private static classDeprecated.Inner class to output a time zone name.private static classDeprecated.Inner class to output a time zone as a number+/-HHMMor+/-HH:MM.private static classDeprecated.Inner class to output the twelve hour field.private static classDeprecated.Inner class to output the twenty four hour field.private static classDeprecated.Inner class to output a two digit month.private static classDeprecated.Inner class to output a two digit number.private static classDeprecated.Inner class to output a two digit year.private static classDeprecated.Inner class to output an unpadded month.private static classDeprecated.Inner class to output an unpadded number.private static classDeprecated.Inner class to output the numeric day in week. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final ConcurrentMap<FastDatePrinter.TimeZoneDisplayKey, String> Deprecated.static final intDeprecated.FULL locale dependent date or time style.static final intDeprecated.LONG locale dependent date or time style.private static final intDeprecated.static final intDeprecated.MEDIUM locale dependent date or time style.private final LocaleDeprecated.The locale.private intDeprecated.The estimated maximum length.private final StringDeprecated.The pattern.private FastDatePrinter.Rule[]Deprecated.The parsed rules.private final TimeZoneDeprecated.The time zone.private static final longDeprecated.Required for serialization support.static final intDeprecated.SHORT locale dependent date or time style. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFastDatePrinter(String pattern, TimeZone timeZone, Locale locale) Deprecated.Constructs a new FastDatePrinter. -
Method Summary
Modifier and TypeMethodDescriptionprivate static voidappendDigits(Appendable buffer, int value) Deprecated.Appends two digits to the given buffer.private static voidappendFullDigits(Appendable buffer, int value, int minFieldWidth) Deprecated.Appends all digits to the given buffer.private <B extends Appendable>
BapplyRules(Calendar calendar, B buf) Deprecated.Performs the formatting by applying the rules to the specified calendar.protected StringBufferapplyRules(Calendar calendar, StringBuffer buf) Deprecated.private StringDeprecated.Creates a String representation of the given Calendar by applying the rules of this printer to it.booleanDeprecated.Compares two objects for equality.format(long millis) Deprecated.Formats a millisecondlongvalue.<B extends Appendable>
Bformat(long millis, B buf) Deprecated.Formats a millisecondlongvalue into the suppliedAppendable.(package private) StringDeprecated.Formats aDate,CalendarorLong(milliseconds) object.format(Object obj, StringBuilder toAppendTo, FieldPosition pos) Deprecated.Deprecated.Formats aCalendarobject.<B extends Appendable>
BDeprecated.Formats aCalendarobject into the suppliedAppendable.Deprecated.Formats aDateobject using aGregorianCalendar.<B extends Appendable>
BDeprecated.Formats aDateobject into the suppliedAppendableusing aGregorianCalendar.Deprecated.Gets the locale used by this printer.intDeprecated.Gets an estimate for the maximum string length that the formatter will produce.Deprecated.Gets the pattern used by this printer.Deprecated.Gets the time zone used by this printer.(package private) static StringgetTimeZoneDisplay(TimeZone tz, boolean daylight, int style, Locale locale) Deprecated.Gets the time zone display name, using a cache for performance.inthashCode()Deprecated.Returns a hash code compatible with equals.private voidinit()Deprecated.Initializes the instance for first use.private CalendarDeprecated.Creation method for new calendar instances.protected List<FastDatePrinter.Rule> Deprecated.Returns a list of Rules given a pattern.protected StringparseToken(String pattern, int[] indexRef) Deprecated.Performs the parsing of tokens.private voidDeprecated.Create the object after serialization.protected FastDatePrinter.NumberRuleselectNumberRule(int field, int padding) Deprecated.Gets an appropriate rule for the padding required.toString()Deprecated.Gets a debugging string version of this formatter.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDDeprecated.Required for serialization support.- See Also:
-
FULL
public static final int FULLDeprecated.FULL locale dependent date or time style.- See Also:
-
LONG
public static final int LONGDeprecated.LONG locale dependent date or time style.- See Also:
-
MEDIUM
public static final int MEDIUMDeprecated.MEDIUM locale dependent date or time style.- See Also:
-
SHORT
public static final int SHORTDeprecated.SHORT locale dependent date or time style.- See Also:
-
mPattern
-
mTimeZone
-
mLocale
-
mRules
-
mMaxLengthEstimate
private transient int mMaxLengthEstimateDeprecated.The estimated maximum length. -
MAX_DIGITS
private static final int MAX_DIGITSDeprecated.- See Also:
-
cTimeZoneDisplayCache
private static final ConcurrentMap<FastDatePrinter.TimeZoneDisplayKey, String> cTimeZoneDisplayCacheDeprecated.
-
-
Constructor Details
-
FastDatePrinter
Deprecated.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 Details
-
init
private void init()Deprecated.Initializes the instance for first use.
-
parsePattern
Deprecated.Returns a list of Rules given a pattern.
- Returns:
- a
Listof Rule objects - Throws:
IllegalArgumentException- if pattern is invalid
-
parseToken
-
selectNumberRule
Deprecated.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
Deprecated.Formats a
Date,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
- See Also:
-
format
-
format
Deprecated.Description copied from interface:DatePrinterFormats a millisecond
longvalue.- Specified by:
formatin interfaceDatePrinter- Parameters:
millis- the millisecond value to format- Returns:
- the formatted string
-
applyRulesToString
-
newCalendar
Deprecated.Creation method for new calendar instances.- Returns:
- a new Calendar instance.
-
format
Deprecated.Description copied from interface:DatePrinterFormats a
Dateobject using aGregorianCalendar.- Specified by:
formatin interfaceDatePrinter- Parameters:
date- the date to format- Returns:
- the formatted string
-
format
Deprecated.Description copied from interface:DatePrinterFormats a
The TimeZone set on the Calendar is only used to adjust the time offset. The TimeZone specified during the construction of the Parser will determine the TimeZone used in the formatted string.Calendarobject.- Specified by:
formatin interfaceDatePrinter- Parameters:
calendar- the calendar to format.- Returns:
- the formatted string
-
format
Deprecated.Description copied from interface:DatePrinterFormats a millisecond
longvalue into the suppliedAppendable.- Specified by:
formatin interfaceDatePrinter- Type Parameters:
B- the Appendable class type, usually StringBuilder or StringBuffer.- Parameters:
millis- the millisecond value to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
format
Deprecated.Description copied from interface:DatePrinterFormats a
Dateobject into the suppliedAppendableusing aGregorianCalendar.- Specified by:
formatin interfaceDatePrinter- Type Parameters:
B- the Appendable class type, usually StringBuilder or StringBuffer.- Parameters:
date- the date to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
format
Deprecated.Description copied from interface:DatePrinterFormats a
The TimeZone set on the Calendar is only used to adjust the time offset. The TimeZone specified during the construction of the Parser will determine the TimeZone used in the formatted string.Calendarobject into the suppliedAppendable.- Specified by:
formatin interfaceDatePrinter- Type Parameters:
B- the Appendable class type, usually StringBuilder or StringBuffer.- Parameters:
calendar- the calendar to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
applyRules
Deprecated.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
-
applyRules
Deprecated.Performs the formatting by applying the rules to the specified calendar.
- Type Parameters:
B- the Appendable class type, usually StringBuilder or StringBuffer.- Parameters:
calendar- the calendar to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
getPattern
Deprecated.Description copied from interface:DatePrinterGets the pattern used by this printer.
- Specified by:
getPatternin interfaceDatePrinter- Returns:
- the pattern,
SimpleDateFormatcompatible
-
getTimeZone
Deprecated.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
Deprecated.Description copied from interface:DatePrinterGets the locale used by this printer.
- Specified by:
getLocalein interfaceDatePrinter- Returns:
- the locale
-
getMaxLengthEstimate
public int getMaxLengthEstimate()Deprecated.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
-
hashCode
-
toString
-
readObject
Deprecated.Create the object after serialization. This implementation reinitializes the transient properties.- Parameters:
in- ObjectInputStream from which the object is being deserialized.- Throws:
IOException- if there is an IO issue.ClassNotFoundException- if a class cannot be found.
-
appendDigits
Deprecated.Appends two digits to the given buffer.- Parameters:
buffer- the buffer to append to.value- the value to append digits from.- Throws:
IOException
-
appendFullDigits
private static void appendFullDigits(Appendable buffer, int value, int minFieldWidth) throws IOException Deprecated.Appends all digits to the given buffer.- Parameters:
buffer- the buffer to append to.value- the value to append digits from.- Throws:
IOException
-
getTimeZoneDisplay
Deprecated.Gets the time zone display name, using a cache for performance.
- Parameters:
tz- the zone to querydaylight- true if daylight savingsstyle- the style to useTimeZone.LONGorTimeZone.SHORTlocale- the locale to use- Returns:
- the textual name of the time zone
-
2.25.0, this class is assumed to be internal and planned to be removed in the next major release.