Uses of Class
org.joda.time.DurationField
Packages that use DurationField
Package
Description
Provides support for dates, times, time zones, durations, intervals, and
partials.
Package containing the chronology classes which define the calendar systems.
Implementation package providing abstract and standard field classes.
-
Uses of DurationField in org.joda.time
Methods in org.joda.time that return DurationFieldModifier and TypeMethodDescriptionabstract DurationFieldChronology.centuries()Get the centuries duration field for this chronology.abstract DurationFieldChronology.days()Get the days duration field for this chronology.abstract DurationFieldChronology.eras()Get the eras duration field for this chronology.abstract DurationFieldDateTimeField.getDurationField()Returns the duration per unit value of this field.abstract DurationFieldDurationFieldType.getField(Chronology chronology) Gets a suitable field for this type from the given Chronology.abstract DurationFieldDateTimeField.getLeapDurationField()If this field were to leap, then it would be in units described by the returned duration.abstract DurationFieldDateTimeField.getRangeDurationField()Returns the range duration of this field.abstract DurationFieldChronology.halfdays()Get the halfdays duration field for this chronology.abstract DurationFieldChronology.hours()Get the hours duration field for this chronology.abstract DurationFieldChronology.millis()Get the millis duration field for this chronology.abstract DurationFieldChronology.minutes()Get the minutes duration field for this chronology.abstract DurationFieldChronology.months()Get the months duration field for this chronology.abstract DurationFieldChronology.seconds()Get the seconds duration field for this chronology.abstract DurationFieldChronology.weeks()Get the weeks duration field for this chronology.abstract DurationFieldChronology.weekyears()Get the weekyears duration field for this chronology.abstract DurationFieldChronology.years()Get the years duration field for this chronology. -
Uses of DurationField in org.joda.time.chrono
Fields in org.joda.time.chrono declared as DurationFieldModifier and TypeFieldDescriptionAssembledChronology.Fields.centuriesAssembledChronology.Fields.daysAssembledChronology.Fields.erasAssembledChronology.Fields.halfdaysAssembledChronology.Fields.hoursAssembledChronology.Fields.millisAssembledChronology.Fields.minutesAssembledChronology.Fields.monthsAssembledChronology.Fields.secondsAssembledChronology.Fields.weeksAssembledChronology.Fields.weekyearsAssembledChronology.Fields.yearsMethods in org.joda.time.chrono that return DurationFieldModifier and TypeMethodDescriptionfinal DurationFieldAssembledChronology.centuries()BaseChronology.centuries()Get the centuries duration field for this chronology.final DurationFieldAssembledChronology.days()BaseChronology.days()Get the days duration field for this chronology.final DurationFieldAssembledChronology.eras()BaseChronology.eras()Get the eras duration field for this chronology.final DurationFieldAssembledChronology.halfdays()BaseChronology.halfdays()Get the halfdays duration field for this chronology.final DurationFieldAssembledChronology.hours()BaseChronology.hours()Get the hours duration field for this chronology.final DurationFieldAssembledChronology.millis()BaseChronology.millis()Get the millis duration field for this chronology.final DurationFieldAssembledChronology.minutes()BaseChronology.minutes()Get the minutes duration field for this chronology.final DurationFieldAssembledChronology.months()BaseChronology.months()Get the months duration field for this chronology.final DurationFieldAssembledChronology.seconds()BaseChronology.seconds()Get the seconds duration field for this chronology.final DurationFieldAssembledChronology.weeks()BaseChronology.weeks()Get the weeks duration field for this chronology.final DurationFieldAssembledChronology.weekyears()BaseChronology.weekyears()Get the weekyears duration field for this chronology.final DurationFieldAssembledChronology.years()BaseChronology.years()Get the years duration field for this chronology. -
Uses of DurationField in org.joda.time.field
Subclasses of DurationField in org.joda.time.fieldModifier and TypeClassDescriptionclassBaseDurationField provides the common behaviour for DurationField implementations.classDecoratedDurationFieldextendsBaseDurationField, implementing only the minimum required set of methods.classDelegatedDurationFielddelegates each method call to the duration field it wraps.final classDuration field class representing a field with a fixed unit length of one millisecond.classDuration field class representing a field with a fixed unit length.classScales a DurationField such that it's unit millis becomes larger in magnitude.final classA placeholder implementation to use when a duration field is not supported.Fields in org.joda.time.field declared as DurationFieldModifier and TypeFieldDescriptionstatic final DurationFieldMillisDurationField.INSTANCESingleton instance.Methods in org.joda.time.field that return DurationFieldModifier and TypeMethodDescriptionAbstractPartialFieldProperty.getDurationField()Returns the duration per unit value of this field.AbstractReadableInstantFieldProperty.getDurationField()Returns the duration per unit value of this field.abstract DurationFieldBaseDateTimeField.getDurationField()Returns the duration per unit value of this field.DecoratedDateTimeField.getDurationField()DelegatedDateTimeField.getDurationField()DividedDateTimeField.getDurationField()Returns a scaled version of the wrapped field's unit duration field.final DurationFieldImpreciseDateTimeField.getDurationField()PreciseDurationDateTimeField.getDurationField()Returns the duration per unit value of this field.RemainderDateTimeField.getDurationField()UnsupportedDateTimeField.getDurationField()Even though this DateTimeField is unsupported, the duration field might be supported.AbstractReadableInstantFieldProperty.getLeapDurationField()If this field were to leap, then it would be in units described by the returned duration.BaseDateTimeField.getLeapDurationField()If this field were to leap, then it would be in units described by the returned duration.DelegatedDateTimeField.getLeapDurationField()OffsetDateTimeField.getLeapDurationField()UnsupportedDateTimeField.getLeapDurationField()Always returns null.ZeroIsMaxDateTimeField.getLeapDurationField()AbstractPartialFieldProperty.getRangeDurationField()Returns the range duration of this field.AbstractReadableInstantFieldProperty.getRangeDurationField()Returns the range duration of this field.abstract DurationFieldBaseDateTimeField.getRangeDurationField()Returns the range duration of this field.DecoratedDateTimeField.getRangeDurationField()DelegatedDateTimeField.getRangeDurationField()DividedDateTimeField.getRangeDurationField()abstract DurationFieldImpreciseDateTimeField.getRangeDurationField()PreciseDateTimeField.getRangeDurationField()Returns the range duration of this field.RemainderDateTimeField.getRangeDurationField()Returns a scaled version of the wrapped field's unit duration field.UnsupportedDateTimeField.getRangeDurationField()Always returns null.final DurationFieldDecoratedDurationField.getWrappedField()Gets the wrapped duration field.final DurationFieldDelegatedDurationField.getWrappedField()Gets the wrapped duration field.Methods in org.joda.time.field with parameters of type DurationFieldModifier and TypeMethodDescriptionintBaseDurationField.compareTo(DurationField otherField) intDelegatedDurationField.compareTo(DurationField durationField) intMillisDurationField.compareTo(DurationField otherField) intUnsupportedDurationField.compareTo(DurationField durationField) Always returns zero, indicating that sort order is not relevant.static UnsupportedDateTimeFieldUnsupportedDateTimeField.getInstance(DateTimeFieldType type, DurationField durationField) Gets an instance of UnsupportedDateTimeField for a specific named field.Constructors in org.joda.time.field with parameters of type DurationFieldModifierConstructorDescriptionDecoratedDurationField(DurationField field, DurationFieldType type) Constructor.DelegatedDateTimeField(DateTimeField field, DurationField rangeField, DateTimeFieldType type) Constructor.protectedConstructor.protectedDelegatedDurationField(DurationField field, DurationFieldType type) Constructor.DividedDateTimeField(DateTimeField field, DurationField rangeField, DateTimeFieldType type, int divisor) Constructor.DividedDateTimeField(RemainderDateTimeField remainderField, DurationField rangeField, DateTimeFieldType type) Construct a DividedDateTimeField that compliments the given RemainderDateTimeField.PreciseDateTimeField(DateTimeFieldType type, DurationField unit, DurationField range) Constructor.Constructor.RemainderDateTimeField(DateTimeField field, DurationField rangeField, DateTimeFieldType type, int divisor) Constructor.RemainderDateTimeField(DividedDateTimeField dividedField, DurationField durationField, DateTimeFieldType type) Construct a RemainderDateTimeField that compliments the given DividedDateTimeField.ScaledDurationField(DurationField field, DurationFieldType type, int scalar) Constructor