Package org.joda.time.convert


package org.joda.time.convert

Implementation package providing conversion between date and time objects.

Provides support for converting objects into instants and durations. Converters are used internally by many of the standard classes, like DateTime. Most applications have no need to use these classes directly.

  • Class
    Description
    AbstractConverter simplifies the process of implementing a converter.
    CalendarConverter converts a java util Calendar to an instant or partial.
    Basic converter interface for specifying what object type can be converted.
    ConverterManager controls the date and time converters.
    Holds the singleton instance, lazily loaded to avoid class loading.
    A set of converters, which allows exact converters to be quickly selected.
     
    DateConverter converts a java util Date to an instant or partial.
    DurationConverter defines how an object is converted to a millisecond duration.
    InstantConverter defines how an object is converted to milliseconds/chronology.
    IntervalConverter defines how an object is converted to an interval.
    LongConverter converts a Long to an instant, partial or duration.
    NullConverter converts null to an instant, partial, duration, period or interval.
    PartialConverter defines how an object is converted to a ReadablePartial.
    PeriodConverter defines how an object is converted to a time period.
    ReadableDurationConverter extracts milliseconds and chronology from a ReadableDuration.
    ReadableInstantConverter extracts milliseconds and chronology from a ReadableInstant.
    Converts intervals into durations of any requested period type.
    ReadablePartialConverter extracts partial fields and chronology from a ReadablePartial.
    ReadablePeriodConverter extracts milliseconds and chronology from a ReadablePeriod.
    StringConverter converts from a String to an instant, partial, duration, period or interval..