Uses of Interface
org.joda.time.format.DateTimeParser
Packages that use DateTimeParser
Package
Description
Provides printing and parsing support for instants and durations.
-
Uses of DateTimeParser in org.joda.time.format
Methods in org.joda.time.format that return DateTimeParserModifier and TypeMethodDescriptionDateTimeFormatter.getParser()Gets the internal parser object that performs the real parsing work.DateTimeFormatterBuilder.toParser()Internal method to create a DateTimeParser instance using all the appended elements.Methods in org.joda.time.format with parameters of type DateTimeParserModifier and TypeMethodDescriptionDateTimeFormatterBuilder.append(DateTimeParser parser) Appends just a parser.DateTimeFormatterBuilder.append(DateTimePrinter printer, DateTimeParser parser) Appends a printer/parser pair.DateTimeFormatterBuilder.append(DateTimePrinter printer, DateTimeParser[] parsers) Appends a printer and a set of matching parsers.DateTimeFormatterBuilder.appendOptional(DateTimeParser parser) Appends just a parser element which is optional.longDateTimeParserBucket.parseMillis(DateTimeParser parser, CharSequence text) Parses a datetime from the given text, returning the number of milliseconds since the epoch, 1970-01-01T00:00:00Z.Constructors in org.joda.time.format with parameters of type DateTimeParserModifierConstructorDescriptionDateTimeFormatter(DateTimePrinter printer, DateTimeParser parser) Creates a new formatter, however you will normally use the factory or the builder.