Uses of Class
org.joda.time.DurationField

Packages that use DurationField
org.joda.time Provides support for dates, times, time zones, durations, intervals, and partials. 
org.joda.time.chrono Package containing the chronology classes which define the calendar systems. 
org.joda.time.field Implementation package providing abstract and standard field classes. 
 

Uses of DurationField in org.joda.time
 

Methods in org.joda.time that return DurationField
abstract  DurationField Chronology.centuries()
          Get the centuries duration field for this chronology.
abstract  DurationField Chronology.days()
          Get the days duration field for this chronology.
abstract  DurationField Chronology.eras()
          Get the eras duration field for this chronology.
abstract  DurationField DateTimeField.getDurationField()
          Returns the duration per unit value of this field.
abstract  DurationField DurationFieldType.getField(Chronology chronology)
          Gets a suitable field for this type from the given Chronology.
abstract  DurationField DateTimeField.getLeapDurationField()
          If this field were to leap, then it would be in units described by the returned duration.
abstract  DurationField DateTimeField.getRangeDurationField()
          Returns the range duration of this field.
abstract  DurationField Chronology.halfdays()
          Get the halfdays duration field for this chronology.
abstract  DurationField Chronology.hours()
          Get the hours duration field for this chronology.
abstract  DurationField Chronology.millis()
          Get the millis duration field for this chronology.
abstract  DurationField Chronology.minutes()
          Get the minutes duration field for this chronology.
abstract  DurationField Chronology.months()
          Get the months duration field for this chronology.
abstract  DurationField Chronology.seconds()
          Get the seconds duration field for this chronology.
abstract  DurationField Chronology.weeks()
          Get the weeks duration field for this chronology.
abstract  DurationField Chronology.weekyears()
          Get the weekyears duration field for this chronology.
abstract  DurationField Chronology.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 DurationField
 DurationField AssembledChronology.Fields.centuries
           
 DurationField AssembledChronology.Fields.days
           
 DurationField AssembledChronology.Fields.eras
           
 DurationField AssembledChronology.Fields.halfdays
           
 DurationField AssembledChronology.Fields.hours
           
 DurationField AssembledChronology.Fields.millis
           
 DurationField AssembledChronology.Fields.minutes
           
 DurationField AssembledChronology.Fields.months
           
 DurationField AssembledChronology.Fields.seconds
           
 DurationField AssembledChronology.Fields.weeks
           
 DurationField AssembledChronology.Fields.weekyears
           
 DurationField AssembledChronology.Fields.years
           
 

Methods in org.joda.time.chrono that return DurationField
 DurationField BaseChronology.centuries()
          Get the centuries duration field for this chronology.
 DurationField AssembledChronology.centuries()
           
 DurationField BaseChronology.days()
          Get the days duration field for this chronology.
 DurationField AssembledChronology.days()
           
 DurationField BaseChronology.eras()
          Get the eras duration field for this chronology.
 DurationField AssembledChronology.eras()
           
 DurationField BaseChronology.halfdays()
          Get the halfdays duration field for this chronology.
 DurationField AssembledChronology.halfdays()
           
 DurationField BaseChronology.hours()
          Get the hours duration field for this chronology.
 DurationField AssembledChronology.hours()
           
 DurationField BaseChronology.millis()
          Get the millis duration field for this chronology.
 DurationField AssembledChronology.millis()
           
 DurationField BaseChronology.minutes()
          Get the minutes duration field for this chronology.
 DurationField AssembledChronology.minutes()
           
 DurationField BaseChronology.months()
          Get the months duration field for this chronology.
 DurationField AssembledChronology.months()
           
 DurationField BaseChronology.seconds()
          Get the seconds duration field for this chronology.
 DurationField AssembledChronology.seconds()
           
 DurationField BaseChronology.weeks()
          Get the weeks duration field for this chronology.
 DurationField AssembledChronology.weeks()
           
 DurationField BaseChronology.weekyears()
          Get the weekyears duration field for this chronology.
 DurationField AssembledChronology.weekyears()
           
 DurationField BaseChronology.years()
          Get the years duration field for this chronology.
 DurationField AssembledChronology.years()
           
 

Uses of DurationField in org.joda.time.field
 

Subclasses of DurationField in org.joda.time.field
 class BaseDurationField
          BaseDurationField provides the common behaviour for DurationField implementations.
 class DecoratedDurationField
          DecoratedDurationField extends BaseDurationField, implementing only the minimum required set of methods.
 class DelegatedDurationField
          DelegatedDurationField delegates each method call to the duration field it wraps.
 class MillisDurationField
          Duration field class representing a field with a fixed unit length of one millisecond.
 class PreciseDurationField
          Duration field class representing a field with a fixed unit length.
 class ScaledDurationField
          Scales a DurationField such that it's unit millis becomes larger in magnitude.
 class UnsupportedDurationField
          A placeholder implementation to use when a duration field is not supported.
 

Fields in org.joda.time.field declared as DurationField
static DurationField MillisDurationField.INSTANCE
          Singleton instance.
 

Methods in org.joda.time.field that return DurationField
 DurationField UnsupportedDateTimeField.getDurationField()
          Even though this DateTimeField is unsupported, the duration field might be supported.
 DurationField PreciseDurationDateTimeField.getDurationField()
          Returns the duration per unit value of this field.
 DurationField ImpreciseDateTimeField.getDurationField()
           
 DurationField DividedDateTimeField.getDurationField()
          Returns a scaled version of the wrapped field's unit duration field.
 DurationField DelegatedDateTimeField.getDurationField()
           
 DurationField DecoratedDateTimeField.getDurationField()
           
abstract  DurationField BaseDateTimeField.getDurationField()
          Returns the duration per unit value of this field.
 DurationField AbstractReadableInstantFieldProperty.getDurationField()
          Returns the duration per unit value of this field.
 DurationField AbstractPartialFieldProperty.getDurationField()
          Returns the duration per unit value of this field.
 DurationField ZeroIsMaxDateTimeField.getLeapDurationField()
           
 DurationField UnsupportedDateTimeField.getLeapDurationField()
          Always returns null.
 DurationField OffsetDateTimeField.getLeapDurationField()
           
 DurationField DelegatedDateTimeField.getLeapDurationField()
           
 DurationField BaseDateTimeField.getLeapDurationField()
          If this field were to leap, then it would be in units described by the returned duration.
 DurationField AbstractReadableInstantFieldProperty.getLeapDurationField()
          If this field were to leap, then it would be in units described by the returned duration.
 DurationField UnsupportedDateTimeField.getRangeDurationField()
          Always returns null.
 DurationField RemainderDateTimeField.getRangeDurationField()
          Returns a scaled version of the wrapped field's unit duration field.
 DurationField PreciseDateTimeField.getRangeDurationField()
          Returns the range duration of this field.
abstract  DurationField ImpreciseDateTimeField.getRangeDurationField()
           
 DurationField DelegatedDateTimeField.getRangeDurationField()
           
 DurationField DecoratedDateTimeField.getRangeDurationField()
           
abstract  DurationField BaseDateTimeField.getRangeDurationField()
          Returns the range duration of this field.
 DurationField AbstractReadableInstantFieldProperty.getRangeDurationField()
          Returns the range duration of this field.
 DurationField AbstractPartialFieldProperty.getRangeDurationField()
          Returns the range duration of this field.
 DurationField DelegatedDurationField.getWrappedField()
          Gets the wrapped duration field.
 DurationField DecoratedDurationField.getWrappedField()
          Gets the wrapped duration field.
 

Methods in org.joda.time.field with parameters of type DurationField
 int UnsupportedDurationField.compareTo(DurationField durationField)
          Always returns zero, indicating that sort order is not relevent.
 int MillisDurationField.compareTo(DurationField otherField)
           
 int DelegatedDurationField.compareTo(DurationField durationField)
           
 int BaseDurationField.compareTo(DurationField otherField)
           
static UnsupportedDateTimeField UnsupportedDateTimeField.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 DurationField
DecoratedDurationField(DurationField field, DurationFieldType type)
          Constructor.
DelegatedDurationField(DurationField field)
          Constructor.
DelegatedDurationField(DurationField field, DurationFieldType type)
          Constructor.
PreciseDateTimeField(DateTimeFieldType type, DurationField unit, DurationField range)
          Constructor.
PreciseDurationDateTimeField(DateTimeFieldType type, DurationField unit)
          Constructor.
ScaledDurationField(DurationField field, DurationFieldType type, int scalar)
          Constructor
 



Copyright © 2002-2012 Joda.org. All Rights Reserved.