public interface PeriodParser
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
PeriodFormatter
,
PeriodFormatterBuilder
,
PeriodFormat
Modifier and Type | Method and 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.
|
int parseInto(ReadWritablePeriod period, java.lang.String periodStr, int position, java.util.Locale locale)
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.
period
- a period that will be modifiedperiodStr
- text to parseposition
- position to start parsing fromlocale
- the locale to use for parsingjava.lang.IllegalArgumentException
- if any field is out of range"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"