static class DateTimeFormatterBuilder.TextField extends java.lang.Object implements InternalPrinter, InternalParser
| Modifier and Type | Field and Description |
|---|---|
private static java.util.Map<java.util.Locale,java.util.Map<DateTimeFieldType,java.lang.Object[]>> |
cParseCache |
private DateTimeFieldType |
iFieldType |
private boolean |
iShort |
| Constructor and Description |
|---|
TextField(DateTimeFieldType fieldType,
boolean isShort) |
| Modifier and Type | Method and Description |
|---|---|
int |
estimateParsedLength()
Returns the expected maximum number of characters consumed.
|
int |
estimatePrintedLength()
Returns the expected maximum number of characters produced.
|
int |
parseInto(DateTimeParserBucket bucket,
java.lang.CharSequence text,
int position)
Parse an element from the given text, saving any fields into the given
DateTimeParserBucket.
|
private java.lang.String |
print(long instant,
Chronology chrono,
java.util.Locale locale) |
private java.lang.String |
print(ReadablePartial partial,
java.util.Locale locale) |
void |
printTo(java.lang.Appendable appendable,
long instant,
Chronology chrono,
int displayOffset,
DateTimeZone displayZone,
java.util.Locale locale)
Prints an instant from milliseconds since 1970-01-01T00:00:00Z,
using the given Chronology.
|
void |
printTo(java.lang.Appendable appendable,
ReadablePartial partial,
java.util.Locale locale)
Prints a ReadablePartial.
|
private static java.util.Map<java.util.Locale,java.util.Map<DateTimeFieldType,java.lang.Object[]>> cParseCache
private final DateTimeFieldType iFieldType
private final boolean iShort
TextField(DateTimeFieldType fieldType, boolean isShort)
public int estimatePrintedLength()
InternalPrinterestimatePrintedLength in interface InternalPrinterpublic void printTo(java.lang.Appendable appendable,
long instant,
Chronology chrono,
int displayOffset,
DateTimeZone displayZone,
java.util.Locale locale)
throws java.io.IOException
InternalPrinterprintTo in interface InternalPrinterappendable - 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 localejava.io.IOExceptionpublic void printTo(java.lang.Appendable appendable,
ReadablePartial partial,
java.util.Locale locale)
throws java.io.IOException
InternalPrinterprintTo in interface InternalPrinterappendable - formatted instant is appended to, not nullpartial - partial to format, not nulllocale - the locale to use, null means default localejava.io.IOExceptionprivate java.lang.String print(long instant,
Chronology chrono,
java.util.Locale locale)
private java.lang.String print(ReadablePartial partial, java.util.Locale locale)
public int estimateParsedLength()
InternalParserestimateParsedLength in interface InternalParserpublic int parseInto(DateTimeParserBucket bucket, java.lang.CharSequence text, int position)
InternalParserIf 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.
parseInto in interface InternalParserbucket - field are saved into this, not nulltext - the text to parse, not nullposition - position to start parsing from