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 interfaceDurationConverterDurationConverter defines how an object is converted to a millisecond duration.interfaceInstantConverterInstantConverter defines how an object is converted to milliseconds/chronology.interfaceIntervalConverterIntervalConverter defines how an object is converted to an interval.interfacePartialConverterPartialConverter defines how an object is converted to a ReadablePartial.interfacePeriodConverterPeriodConverter defines how an object is converted to a time period.Classes in org.joda.time.convert that implement Converter Modifier and Type Class Description classAbstractConverterAbstractConverter simplifies the process of implementing a converter.(package private) classCalendarConverterCalendarConverter converts a java util Calendar to an instant or partial.(package private) classDateConverterDateConverter converts a java util Date to an instant or partial.(package private) classLongConverterLongConverter converts a Long to an instant, partial or duration.(package private) classNullConverterNullConverter converts null to an instant, partial, duration, period or interval.(package private) classReadableDurationConverterReadableDurationConverter extracts milliseconds and chronology from a ReadableDuration.(package private) classReadableInstantConverterReadableInstantConverter extracts milliseconds and chronology from a ReadableInstant.(package private) classReadableIntervalConverterConverts intervals into durations of any requested period type.(package private) classReadablePartialConverterReadablePartialConverter extracts partial fields and chronology from a ReadablePartial.(package private) classReadablePeriodConverterReadablePeriodConverter extracts milliseconds and chronology from a ReadablePeriod.(package private) classStringConverterStringConverter 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) ConverterConverterSet.Entry. iConverterprivate Converter[]ConverterSet. iConvertersMethods in org.joda.time.convert that return Converter Modifier and Type Method Description (package private) ConverterConverterSet. select(java.lang.Class<?> type)Returns the closest matching converter for the given type, or null if none found.private static ConverterConverterSet. 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) ConverterSetConverterSet. add(Converter converter, Converter[] removed)Returns a copy of this set, with the given converter added.(package private) voidConverterSet. copyInto(Converter[] converters)Copies all the converters in the set to the given array.(package private) ConverterSetConverterSet. remove(int index, Converter[] removed)Returns a copy of this set, with the converter at the given index removed.(package private) ConverterSetConverterSet. 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)
-