Uses of Interface
org.joda.time.convert.Converter
-
Packages that use Converter Package Description org.joda.time.convert Implementation package providing conversion between date and time objects. -
-
Uses of Converter in org.joda.time.convert
Subinterfaces of Converter in org.joda.time.convert Modifier and Type Interface Description interface
DurationConverter
DurationConverter defines how an object is converted to a millisecond duration.interface
InstantConverter
InstantConverter defines how an object is converted to milliseconds/chronology.interface
IntervalConverter
IntervalConverter defines how an object is converted to an interval.interface
PartialConverter
PartialConverter defines how an object is converted to a ReadablePartial.interface
PeriodConverter
PeriodConverter defines how an object is converted to a time period.Classes in org.joda.time.convert that implement Converter Modifier and Type Class Description class
AbstractConverter
AbstractConverter simplifies the process of implementing a converter.(package private) class
CalendarConverter
CalendarConverter converts a java util Calendar to an instant or partial.(package private) class
DateConverter
DateConverter converts a java util Date to an instant or partial.(package private) class
LongConverter
LongConverter converts a Long to an instant, partial or duration.(package private) class
NullConverter
NullConverter converts null to an instant, partial, duration, period or interval.(package private) class
ReadableDurationConverter
ReadableDurationConverter extracts milliseconds and chronology from a ReadableDuration.(package private) class
ReadableInstantConverter
ReadableInstantConverter extracts milliseconds and chronology from a ReadableInstant.(package private) class
ReadableIntervalConverter
Converts intervals into durations of any requested period type.(package private) class
ReadablePartialConverter
ReadablePartialConverter extracts partial fields and chronology from a ReadablePartial.(package private) class
ReadablePeriodConverter
ReadablePeriodConverter extracts milliseconds and chronology from a ReadablePeriod.(package private) class
StringConverter
StringConverter converts from a String to an instant, partial, duration, period or interval..Fields in org.joda.time.convert declared as Converter Modifier and Type Field Description (package private) Converter
ConverterSet.Entry. iConverter
private Converter[]
ConverterSet. iConverters
Methods in org.joda.time.convert that return Converter Modifier and Type Method Description (package private) Converter
ConverterSet. select(java.lang.Class<?> type)
Returns the closest matching converter for the given type, or null if none found.private static Converter
ConverterSet. selectSlow(ConverterSet set, java.lang.Class<?> type)
Returns the closest matching converter for the given type, but not very efficiently.Methods in org.joda.time.convert with parameters of type Converter Modifier and Type Method Description (package private) ConverterSet
ConverterSet. add(Converter converter, Converter[] removed)
Returns a copy of this set, with the given converter added.(package private) void
ConverterSet. copyInto(Converter[] converters)
Copies all the converters in the set to the given array.(package private) ConverterSet
ConverterSet. remove(int index, Converter[] removed)
Returns a copy of this set, with the converter at the given index removed.(package private) ConverterSet
ConverterSet. remove(Converter converter, Converter[] removed)
Returns a copy of this set, with the given converter removed.Constructors in org.joda.time.convert with parameters of type Converter Constructor Description ConverterSet(Converter[] converters)
Entry(java.lang.Class<?> type, Converter converter)
-