Uses of Class
org.joda.time.DurationFieldType

Packages that use DurationFieldType
org.joda.time Provides support for dates, times, time zones, durations, intervals, and partials. 
org.joda.time.base Implementation package providing abstract and base time classes. 
org.joda.time.field Implementation package providing abstract and standard field classes. 
 

Uses of DurationFieldType in org.joda.time
 

Methods in org.joda.time that return DurationFieldType
static DurationFieldType DurationFieldType.millis()
          Get the millis field type.
static DurationFieldType DurationFieldType.seconds()
          Get the seconds field type.
static DurationFieldType DurationFieldType.minutes()
          Get the minutes field type.
static DurationFieldType DurationFieldType.hours()
          Get the hours field type.
static DurationFieldType DurationFieldType.halfdays()
          Get the halfdays field type.
static DurationFieldType DurationFieldType.days()
          Get the days field type.
static DurationFieldType DurationFieldType.weeks()
          Get the weeks field type.
static DurationFieldType DurationFieldType.weekyears()
          Get the weekyears field type.
static DurationFieldType DurationFieldType.months()
          Get the months field type.
static DurationFieldType DurationFieldType.years()
          Get the years field type.
static DurationFieldType DurationFieldType.centuries()
          Get the centuries field type.
static DurationFieldType DurationFieldType.eras()
          Get the eras field type.
 DurationFieldType PeriodType.getFieldType(int index)
          Gets the field type by index.
 DurationFieldType ReadablePeriod.getFieldType(int index)
          Gets the field type at the specified index.
abstract  DurationFieldType DateTimeFieldType.getDurationType()
          Get the duration unit of the field.
abstract  DurationFieldType DateTimeFieldType.getRangeDurationType()
          Get the duration range of the field.
abstract  DurationFieldType DurationField.getType()
          Get the type of the field.
 DurationFieldType IllegalFieldValueException.getDurationFieldType()
          Returns the DurationFieldType whose value was invalid, or null if not applicable.
 

Methods in org.joda.time with parameters of type DurationFieldType
 YearMonthDay YearMonthDay.withFieldAdded(DurationFieldType fieldType, int amount)
          Gets a copy of this date with the value of the specified field increased.
static PeriodType PeriodType.forFields(DurationFieldType[] types)
          Gets a period type that contains the duration types of the array.
 boolean PeriodType.isSupported(DurationFieldType type)
          Checks whether the field specified is supported by this period.
 int PeriodType.indexOf(DurationFieldType type)
          Gets the index of the field in this period.
 int ReadablePeriod.get(DurationFieldType field)
          Gets the value of one of the fields.
 boolean ReadablePeriod.isSupported(DurationFieldType field)
          Checks whether the field type specified is supported by this period.
 TimeOfDay TimeOfDay.withFieldAdded(DurationFieldType fieldType, int amount)
          Gets a copy of this time with the value of the specified field increased, wrapping to what would be a new day if required.
 void MutablePeriod.set(DurationFieldType field, int value)
          Sets the value of one of the fields.
 void MutablePeriod.add(DurationFieldType field, int value)
          Adds to the value of one of the fields.
 DateTime DateTime.withFieldAdded(DurationFieldType fieldType, int amount)
          Gets a copy of this datetime with the value of the specified field increased.
 void MutableDateTime.add(DurationFieldType type, int amount)
          Adds to the instant specifying the duration and multiple to add.
 Period Period.withField(DurationFieldType field, int value)
          Creates a new Period instance with the specified field set to a new value.
 Period Period.withFieldAdded(DurationFieldType field, int value)
          Creates a new Period instance with the valueToAdd added to the specified field.
 DateMidnight DateMidnight.withFieldAdded(DurationFieldType fieldType, int amount)
          Gets a copy of this datetime with the value of the specified field increased.
 Partial Partial.withFieldAdded(DurationFieldType fieldType, int amount)
          Gets a copy of this Partial with the value of the specified field increased.
 Partial Partial.withFieldAddWrapped(DurationFieldType fieldType, int amount)
          Gets a copy of this Partial with the value of the specified field increased.
 void ReadWritablePeriod.set(DurationFieldType field, int value)
          Sets the value of one of the fields.
 void ReadWritablePeriod.add(DurationFieldType field, int value)
          Adds to the value of one of the fields.
 void ReadWritableInstant.add(DurationFieldType type, int amount)
          Adds to the instant specifying the duration and multiple to add.
 

Constructors in org.joda.time with parameters of type DurationFieldType
IllegalFieldValueException(DurationFieldType fieldType, Number value, Number lowerBound, Number upperBound)
          Constructor.
IllegalFieldValueException(DurationFieldType fieldType, String value)
          Constructor.
 

Uses of DurationFieldType in org.joda.time.base
 

Methods in org.joda.time.base that return DurationFieldType
 DurationFieldType[] AbstractPeriod.getFieldTypes()
          Gets an array of the field types that this period supports.
 DurationFieldType BasePeriod.getFieldType(int index)
          Gets the field type at the specified index.
 

Methods in org.joda.time.base with parameters of type DurationFieldType
 int AbstractPeriod.get(DurationFieldType type)
          Gets the value of one of the fields.
 boolean AbstractPeriod.isSupported(DurationFieldType type)
          Checks whether the field specified is supported by this period.
 int AbstractPeriod.indexOf(DurationFieldType type)
          Gets the index of the field in this period.
 

Uses of DurationFieldType in org.joda.time.field
 

Methods in org.joda.time.field that return DurationFieldType
 DurationFieldType MillisDurationField.getType()
           
 DurationFieldType DelegatedDurationField.getType()
           
 DurationFieldType BaseDurationField.getType()
           
 DurationFieldType UnsupportedDurationField.getType()
           
 

Methods in org.joda.time.field with parameters of type DurationFieldType
static UnsupportedDurationField UnsupportedDurationField.getInstance(DurationFieldType type)
          Gets an instance of UnsupportedDurationField for a specific named field.
 

Constructors in org.joda.time.field with parameters of type DurationFieldType
DecoratedDurationField(DurationField field, DurationFieldType type)
          Constructor.
PreciseDurationField(DurationFieldType type, long unitMillis)
          Constructor.
ScaledDurationField(DurationField field, DurationFieldType type, int scalar)
          Constructor
 



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