Package org.joda.time.format
Class DateTimeFormatterBuilder.TimeZoneName
- java.lang.Object
-
- org.joda.time.format.DateTimeFormatterBuilder.TimeZoneName
-
- All Implemented Interfaces:
InternalParser
,InternalPrinter
- Enclosing class:
- DateTimeFormatterBuilder
static class DateTimeFormatterBuilder.TimeZoneName extends java.lang.Object implements InternalPrinter, InternalParser
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,DateTimeZone>
iParseLookup
private int
iType
(package private) static int
LONG_NAME
(package private) static int
SHORT_NAME
-
Constructor Summary
Constructors Constructor Description TimeZoneName(int type, java.util.Map<java.lang.String,DateTimeZone> parseLookup)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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, DateTimeZone displayZone, 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.
-
-
-
Field Detail
-
LONG_NAME
static final int LONG_NAME
- See Also:
- Constant Field Values
-
SHORT_NAME
static final int SHORT_NAME
- See Also:
- Constant Field Values
-
iParseLookup
private final java.util.Map<java.lang.String,DateTimeZone> iParseLookup
-
iType
private final int iType
-
-
Constructor Detail
-
TimeZoneName
TimeZoneName(int type, java.util.Map<java.lang.String,DateTimeZone> parseLookup)
-
-
Method Detail
-
estimatePrintedLength
public int estimatePrintedLength()
Description copied from interface:InternalPrinter
Returns the expected maximum number of characters produced. The actual amount should rarely exceed this estimate.- Specified by:
estimatePrintedLength
in interfaceInternalPrinter
- Returns:
- the estimated length
-
printTo
public void printTo(java.lang.Appendable appendable, long instant, Chronology chrono, int displayOffset, DateTimeZone displayZone, java.util.Locale locale) throws java.io.IOException
Description copied from interface:InternalPrinter
Prints an instant from milliseconds since 1970-01-01T00:00:00Z, using the given Chronology.- Specified by:
printTo
in interfaceInternalPrinter
- Parameters:
appendable
- 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:
java.io.IOException
-
print
private java.lang.String print(long instant, DateTimeZone displayZone, java.util.Locale locale)
-
printTo
public void printTo(java.lang.Appendable appendable, ReadablePartial partial, java.util.Locale locale) throws java.io.IOException
Description copied from interface:InternalPrinter
Prints a ReadablePartial.- Specified by:
printTo
in interfaceInternalPrinter
- Parameters:
appendable
- formatted instant is appended to, not nullpartial
- partial to format, not nulllocale
- the locale to use, null means default locale- Throws:
java.io.IOException
-
estimateParsedLength
public int estimateParsedLength()
Description copied from interface:InternalParser
Returns the expected maximum number of characters consumed. The actual amount should rarely exceed this estimate.- Specified by:
estimateParsedLength
in interfaceInternalParser
- Returns:
- the estimated length
-
parseInto
public int parseInto(DateTimeParserBucket bucket, java.lang.CharSequence text, int position)
Description copied from interface:InternalParser
Parse 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:
parseInto
in 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
-
-