Package org.joda.time.format
Class DateTimeFormat.StyleFormatter
java.lang.Object
org.joda.time.format.DateTimeFormat.StyleFormatter
- All Implemented Interfaces:
InternalParser,InternalPrinter
- Enclosing class:
DateTimeFormat
static class DateTimeFormat.StyleFormatter
extends Object
implements InternalPrinter, InternalParser
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final ConcurrentHashMap<DateTimeFormat.StyleFormatterCacheKey, DateTimeFormatter> private final intprivate final intprivate final int -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns the expected maximum number of characters consumed.intReturns the expected maximum number of characters produced.private DateTimeFormattergetFormatter(Locale locale) (package private) StringgetPattern(Locale locale) intparseInto(DateTimeParserBucket bucket, CharSequence text, int position) Parse an element from the given text, saving any fields into the given DateTimeParserBucket.voidprintTo(Appendable appenadble, long instant, Chronology chrono, int displayOffset, DateTimeZone displayZone, Locale locale) Prints an instant from milliseconds since 1970-01-01T00:00:00Z, using the given Chronology.voidprintTo(Appendable appendable, ReadablePartial partial, Locale locale) Prints a ReadablePartial.
-
Field Details
-
cCache
private static final ConcurrentHashMap<DateTimeFormat.StyleFormatterCacheKey,DateTimeFormatter> cCache -
iDateStyle
private final int iDateStyle -
iTimeStyle
private final int iTimeStyle -
iType
private final int iType
-
-
Constructor Details
-
StyleFormatter
StyleFormatter(int dateStyle, int timeStyle, int type)
-
-
Method Details
-
estimatePrintedLength
public int estimatePrintedLength()Description copied from interface:InternalPrinterReturns the expected maximum number of characters produced. The actual amount should rarely exceed this estimate.- Specified by:
estimatePrintedLengthin interfaceInternalPrinter- Returns:
- the estimated length
-
printTo
public void printTo(Appendable appenadble, long instant, Chronology chrono, int displayOffset, DateTimeZone displayZone, Locale locale) throws IOException Description copied from interface:InternalPrinterPrints an instant from milliseconds since 1970-01-01T00:00:00Z, using the given Chronology.- Specified by:
printToin interfaceInternalPrinter- Parameters:
appenadble- formatted instant is appended to, not nullinstant- millis since 1970-01-01T00:00:00Zchrono- the chronology to use, not nulldisplayOffset- if a time zone offset is printed, force it to use this millisecond valuedisplayZone- the time zone to use, null means local timelocale- the locale to use, null means default locale- Throws:
IOException- if an IO error occurs
-
printTo
public void printTo(Appendable appendable, ReadablePartial partial, Locale locale) throws IOException Description copied from interface:InternalPrinterPrints a ReadablePartial.- Specified by:
printToin interfaceInternalPrinter- Parameters:
appendable- formatted instant is appended to, not nullpartial- partial to format, not nulllocale- the locale to use, null means default locale- Throws:
IOException- if an IO error occurs
-
estimateParsedLength
public int estimateParsedLength()Description copied from interface:InternalParserReturns the expected maximum number of characters consumed. The actual amount should rarely exceed this estimate.- Specified by:
estimateParsedLengthin interfaceInternalParser- Returns:
- the estimated length
-
parseInto
Description copied from interface:InternalParserParse an element from the given text, saving any fields into the given DateTimeParserBucket. If the parse succeeds, the return value is the new text position. Note that the parse may succeed without fully reading the text.If it fails, the return value is negative. To determine the position where the parse failed, apply the one's complement operator (~) on the return value.
- Specified by:
parseIntoin interfaceInternalParser- Parameters:
bucket- field are saved into this, not nulltext- the text to parse, not nullposition- position to start parsing from- Returns:
- new position, negative value means parse failed - apply complement operator (~) to get position of failure
-
getFormatter
-
getPattern
-