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

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

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

Methods in org.joda.time.field with parameters of type DurationField
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
ScaledDurationField(DurationField field, DurationFieldType type, int scalar)
          Constructor
PreciseDurationDateTimeField(DateTimeFieldType type, DurationField unit)
          Constructor.
PreciseDateTimeField(DateTimeFieldType type, DurationField unit, DurationField range)
          Constructor.
DecoratedDurationField(DurationField field, DurationFieldType type)
          Constructor.
 



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