Package org.joda.time.format
Class DateTimeFormatterBuilder.NumberFormatter
- java.lang.Object
-
- org.joda.time.format.DateTimeFormatterBuilder.NumberFormatter
-
- All Implemented Interfaces:
InternalParser,InternalPrinter
- Direct Known Subclasses:
DateTimeFormatterBuilder.PaddedNumber,DateTimeFormatterBuilder.UnpaddedNumber
- Enclosing class:
- DateTimeFormatterBuilder
abstract static class DateTimeFormatterBuilder.NumberFormatter extends java.lang.Object implements InternalPrinter, InternalParser
-
-
Field Summary
Fields Modifier and Type Field Description protected DateTimeFieldTypeiFieldTypeprotected intiMaxParsedDigitsprotected booleaniSigned
-
Constructor Summary
Constructors Constructor Description NumberFormatter(DateTimeFieldType fieldType, int maxParsedDigits, boolean signed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intestimateParsedLength()Returns the expected maximum number of characters consumed.intparseInto(DateTimeParserBucket bucket, java.lang.CharSequence text, int position)Parse an element from the given text, saving any fields into the given DateTimeParserBucket.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.joda.time.format.InternalPrinter
estimatePrintedLength, printTo, printTo
-
-
-
-
Field Detail
-
iFieldType
protected final DateTimeFieldType iFieldType
-
iMaxParsedDigits
protected final int iMaxParsedDigits
-
iSigned
protected final boolean iSigned
-
-
Constructor Detail
-
NumberFormatter
NumberFormatter(DateTimeFieldType fieldType, int maxParsedDigits, boolean signed)
-
-
Method Detail
-
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
-
-