Package org.joda.time.format
Class InternalParserDateTimeParser
- java.lang.Object
-
- org.joda.time.format.InternalParserDateTimeParser
-
- All Implemented Interfaces:
DateTimeParser
,InternalParser
class InternalParserDateTimeParser extends java.lang.Object implements DateTimeParser, InternalParser
Adapter between old and new printer interface.- Since:
- 2.4
-
-
Field Summary
Fields Modifier and Type Field Description private InternalParser
underlying
-
Constructor Summary
Constructors Modifier Constructor Description private
InternalParserDateTimeParser(InternalParser underlying)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
int
estimateParsedLength()
Returns the expected maximum number of characters consumed.(package private) static DateTimeParser
of(InternalParser underlying)
int
parseInto(DateTimeParserBucket bucket, java.lang.CharSequence text, int position)
Parse an element from the given text, saving any fields into the given DateTimeParserBucket.int
parseInto(DateTimeParserBucket bucket, java.lang.String text, int position)
Parse an element from the given text, saving any fields into the given DateTimeParserBucket.
-
-
-
Field Detail
-
underlying
private final InternalParser underlying
-
-
Constructor Detail
-
InternalParserDateTimeParser
private InternalParserDateTimeParser(InternalParser underlying)
-
-
Method Detail
-
of
static DateTimeParser of(InternalParser underlying)
-
estimateParsedLength
public int estimateParsedLength()
Description copied from interface:DateTimeParser
Returns the expected maximum number of characters consumed. The actual amount should rarely exceed this estimate.- Specified by:
estimateParsedLength
in interfaceDateTimeParser
- 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
-
parseInto
public int parseInto(DateTimeParserBucket bucket, java.lang.String text, int position)
Description copied from interface:DateTimeParser
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 interfaceDateTimeParser
- 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
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-