Package org.joda.time.format
Enum DateTimeFormatterBuilder.TimeZoneId
- java.lang.Object
-
- java.lang.Enum<DateTimeFormatterBuilder.TimeZoneId>
-
- org.joda.time.format.DateTimeFormatterBuilder.TimeZoneId
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DateTimeFormatterBuilder.TimeZoneId>,InternalParser,InternalPrinter
- Enclosing class:
- DateTimeFormatterBuilder
static enum DateTimeFormatterBuilder.TimeZoneId extends java.lang.Enum<DateTimeFormatterBuilder.TimeZoneId> implements InternalPrinter, InternalParser
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Field Summary
Fields Modifier and Type Field Description private static java.util.List<java.lang.String>ALL_IDSprivate static java.util.List<java.lang.String>BASE_GROUPED_IDSprivate static java.util.Map<java.lang.String,java.util.List<java.lang.String>>GROUPED_IDS(package private) static intMAX_LENGTH(package private) static intMAX_PREFIX_LENGTH
-
Constructor Summary
Constructors Modifier Constructor Description privateTimeZoneId()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intestimateParsedLength()Returns the expected maximum number of characters consumed.intestimatePrintedLength()Returns the expected maximum number of characters produced.intparseInto(DateTimeParserBucket bucket, java.lang.CharSequence text, int position)Parse an element from the given text, saving any fields into the given DateTimeParserBucket.voidprintTo(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.voidprintTo(java.lang.Appendable appendable, ReadablePartial partial, java.util.Locale locale)Prints a ReadablePartial.static DateTimeFormatterBuilder.TimeZoneIdvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DateTimeFormatterBuilder.TimeZoneId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final DateTimeFormatterBuilder.TimeZoneId INSTANCE
-
-
Field Detail
-
ALL_IDS
private static final java.util.List<java.lang.String> ALL_IDS
-
GROUPED_IDS
private static final java.util.Map<java.lang.String,java.util.List<java.lang.String>> GROUPED_IDS
-
BASE_GROUPED_IDS
private static final java.util.List<java.lang.String> BASE_GROUPED_IDS
-
MAX_LENGTH
static final int MAX_LENGTH
-
MAX_PREFIX_LENGTH
static final int MAX_PREFIX_LENGTH
-
-
Method Detail
-
values
public static DateTimeFormatterBuilder.TimeZoneId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DateTimeFormatterBuilder.TimeZoneId c : DateTimeFormatterBuilder.TimeZoneId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DateTimeFormatterBuilder.TimeZoneId valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
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(java.lang.Appendable appendable, long instant, Chronology chrono, int displayOffset, DateTimeZone displayZone, java.util.Locale locale) throws java.io.IOExceptionDescription copied from interface:InternalPrinterPrints an instant from milliseconds since 1970-01-01T00:00:00Z, using the given Chronology.- Specified by:
printToin 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
-
printTo
public void printTo(java.lang.Appendable appendable, ReadablePartial partial, java.util.Locale locale) throws java.io.IOExceptionDescription 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:
java.io.IOException
-
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
public int parseInto(DateTimeParserBucket bucket, java.lang.CharSequence text, int position)
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
-
-