Package org.joda.time.format
Interface PeriodParser
-
public interface PeriodParser
Internal interface for parsing textual representations of time periods.Application users will rarely use this class directly. Instead, you will use one of the factory classes to create a
PeriodFormatter
.The factory classes are:
-PeriodFormatterBuilder
-PeriodFormat
-ISOPeriodFormat
- Since:
- 1.0
- See Also:
PeriodFormatter
,PeriodFormatterBuilder
,PeriodFormat
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
parseInto(ReadWritablePeriod period, java.lang.String periodStr, int position, java.util.Locale locale)
Parses a period from the given text, at the given position, saving the result into the fields of the given ReadWritablePeriod.
-
-
-
Method Detail
-
parseInto
int parseInto(ReadWritablePeriod period, java.lang.String periodStr, int position, java.util.Locale locale)
Parses a period from the given text, at the given position, saving the result into the fields of the given ReadWritablePeriod. 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, but the period may still be modified. To determine the position where the parse failed, apply the one's complement operator (~) on the return value.
- Parameters:
period
- a period that will be modifiedperiodStr
- text to parseposition
- position to start parsing fromlocale
- the locale to use for parsing- Returns:
- new position, if negative, parse failed. Apply complement operator (~) to get position of failure
- Throws:
java.lang.IllegalArgumentException
- if any field is out of range
-
-