Package org.joda.time.format
Class InternalParserDateTimeParser
java.lang.Object
org.joda.time.format.InternalParserDateTimeParser
- All Implemented Interfaces:
DateTimeParser,InternalParser
Adapter between old and new printer interface.
- Since:
- 2.4
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanintReturns the expected maximum number of characters consumed.inthashCode()(package private) static DateTimeParserof(InternalParser underlying) intparseInto(DateTimeParserBucket bucket, CharSequence text, int position) Parse an element from the given text, saving any fields into the given DateTimeParserBucket.intparseInto(DateTimeParserBucket bucket, String text, int position) Parse an element from the given text, saving any fields into the given DateTimeParserBucket.
-
Field Details
-
underlying
-
-
Constructor Details
-
InternalParserDateTimeParser
-
-
Method Details
-
of
-
estimateParsedLength
public int estimateParsedLength()Description copied from interface:DateTimeParserReturns the expected maximum number of characters consumed. The actual amount should rarely exceed this estimate.- Specified by:
estimateParsedLengthin interfaceDateTimeParser- 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
-
parseInto
Description copied from interface:DateTimeParserParse 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 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
-
hashCode
public int hashCode()
-