public interface DateTimeParser
Application users will rarely use this class directly. Instead, you
will use one of the factory classes to create a DateTimeFormatter
.
The factory classes are:
- DateTimeFormatterBuilder
- DateTimeFormat
- ISODateTimeFormat
DateTimeFormatter
,
DateTimeFormatterBuilder
,
DateTimeFormat
Modifier and Type | Method and Description |
---|---|
int |
estimateParsedLength()
Returns the expected maximum number of characters consumed.
|
int |
parseInto(DateTimeParserBucket bucket,
java.lang.String text,
int position)
Parse an element from the given text, saving any fields into the given
DateTimeParserBucket.
|
int estimateParsedLength()
int parseInto(DateTimeParserBucket bucket, java.lang.String text, int position)
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.
bucket
- field are saved into this, not nulltext
- the text to parse, not nullposition
- position to start parsing fromjava.lang.IllegalArgumentException
- if any field is out of rangeCopyright © 2010 - 2020 Adobe. All Rights Reserved