Package org.joda.time.field
Class DividedDateTimeField
- java.lang.Object
 - 
- org.joda.time.DateTimeField
 - 
- org.joda.time.field.BaseDateTimeField
 - 
- org.joda.time.field.DecoratedDateTimeField
 - 
- org.joda.time.field.DividedDateTimeField
 
 
 
 
 
- 
public class DividedDateTimeField extends DecoratedDateTimeField
Divides a DateTimeField such that the retrieved values are reduced by a fixed divisor. The field's unit duration is scaled accordingly, but the range duration is unchanged.DividedDateTimeField is thread-safe and immutable.
- Since:
 - 1.0
 - See Also:
 RemainderDateTimeField
 
- 
- 
Constructor Summary
Constructors Constructor Description DividedDateTimeField(DateTimeField field, DateTimeFieldType type, int divisor)Constructor.DividedDateTimeField(DateTimeField field, DurationField rangeField, DateTimeFieldType type, int divisor)Constructor.DividedDateTimeField(RemainderDateTimeField remainderField, DateTimeFieldType type)Construct a DividedDateTimeField that compliments the given RemainderDateTimeField.DividedDateTimeField(RemainderDateTimeField remainderField, DurationField rangeField, DateTimeFieldType type)Construct a DividedDateTimeField that compliments the given RemainderDateTimeField. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longadd(long instant, int amount)Add the specified amount of scaled units to the specified time instant.longadd(long instant, long amount)Add the specified amount of scaled units to the specified time instant.longaddWrapField(long instant, int amount)Add to the scaled component of the specified time instant, wrapping around within that component if necessary.intget(long instant)Get the amount of scaled units from the specified time instant.intgetDifference(long minuendInstant, long subtrahendInstant)Computes the difference between two instants, as measured in the units of this field.longgetDifferenceAsLong(long minuendInstant, long subtrahendInstant)Computes the difference between two instants, as measured in the units of this field.intgetDivisor()Returns the divisor applied, in the field's units.DurationFieldgetDurationField()Returns a scaled version of the wrapped field's unit duration field.intgetMaximumValue()Get the maximum value for the field.intgetMinimumValue()Get the minimum value for the field.DurationFieldgetRangeDurationField()Returns the range duration of this field.longremainder(long instant)Returns the fractional duration milliseconds of this field.longroundFloor(long instant)Round to the lowest whole unit of this field.longset(long instant, int value)Set the specified amount of scaled units to the specified time instant.- 
Methods inherited from class org.joda.time.field.DecoratedDateTimeField
getWrappedField, isLenient 
- 
Methods inherited from class org.joda.time.field.BaseDateTimeField
add, addWrapField, addWrapPartial, getAsShortText, getAsShortText, getAsShortText, getAsShortText, getAsShortText, getAsText, getAsText, getAsText, getAsText, getAsText, getLeapAmount, getLeapDurationField, getMaximumShortTextLength, getMaximumTextLength, getMaximumValue, getMaximumValue, getMaximumValue, getMinimumValue, getMinimumValue, getMinimumValue, getName, getType, isLeap, isSupported, roundCeiling, roundHalfCeiling, roundHalfEven, roundHalfFloor, set, set, set, set, toString 
- 
Methods inherited from class org.joda.time.DateTimeField
setExtended 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
DividedDateTimeField
public DividedDateTimeField(DateTimeField field, DateTimeFieldType type, int divisor)
Constructor.- Parameters:
 field- the field to wrap, like "year()".type- the field type this field will actually usedivisor- divisor, such as 100 years in a century- Throws:
 java.lang.IllegalArgumentException- if divisor is less than two
 
- 
DividedDateTimeField
public DividedDateTimeField(DateTimeField field, DurationField rangeField, DateTimeFieldType type, int divisor)
Constructor.- Parameters:
 field- the field to wrap, like "year()".rangeField- the range field, null to derivetype- the field type this field will actually usedivisor- divisor, such as 100 years in a century- Throws:
 java.lang.IllegalArgumentException- if divisor is less than two
 
- 
DividedDateTimeField
public DividedDateTimeField(RemainderDateTimeField remainderField, DateTimeFieldType type)
Construct a DividedDateTimeField that compliments the given RemainderDateTimeField.- Parameters:
 remainderField- complimentary remainder field, like "yearOfCentury()".type- the field type this field will actually use
 
- 
DividedDateTimeField
public DividedDateTimeField(RemainderDateTimeField remainderField, DurationField rangeField, DateTimeFieldType type)
Construct a DividedDateTimeField that compliments the given RemainderDateTimeField.- Parameters:
 remainderField- complimentary remainder field, like "yearOfCentury()".rangeField- the range field, null to derivetype- the field type this field will actually use
 
 - 
 
- 
Method Detail
- 
getRangeDurationField
public DurationField getRangeDurationField()
Description copied from class:BaseDateTimeFieldReturns the range duration of this field. For example, if this field represents "hour of day", then the range duration is a day.- Overrides:
 getRangeDurationFieldin classDecoratedDateTimeField- Returns:
 - the range duration of this field, or null if field has no range
 
 
- 
get
public int get(long instant)
Get the amount of scaled units from the specified time instant.- Overrides:
 getin classDecoratedDateTimeField- Parameters:
 instant- the time instant in millis to query.- Returns:
 - the amount of scaled units extracted from the input.
 
 
- 
add
public long add(long instant, int amount)Add the specified amount of scaled units to the specified time instant. The amount added may be negative.- Overrides:
 addin classBaseDateTimeField- Parameters:
 instant- the time instant in millis to update.amount- the amount of scaled units to add (can be negative).- Returns:
 - the updated time instant.
 
 
- 
add
public long add(long instant, long amount)Add the specified amount of scaled units to the specified time instant. The amount added may be negative.- Overrides:
 addin classBaseDateTimeField- Parameters:
 instant- the time instant in millis to update.amount- the amount of scaled units to add (can be negative).- Returns:
 - the updated time instant.
 - See Also:
 BaseDateTimeField.add(long,int)
 
- 
addWrapField
public long addWrapField(long instant, int amount)Add to the scaled component of the specified time instant, wrapping around within that component if necessary.- Overrides:
 addWrapFieldin classBaseDateTimeField- Parameters:
 instant- the time instant in millis to update.amount- the amount of scaled units to add (can be negative).- Returns:
 - the updated time instant.
 
 
- 
getDifference
public int getDifference(long minuendInstant, long subtrahendInstant)Description copied from class:BaseDateTimeFieldComputes the difference between two instants, as measured in the units of this field. Any fractional units are dropped from the result. Calling getDifference reverses the effect of calling add. In the following code:long instant = ... int v = ... int age = getDifference(add(instant, v), instant);
The value 'age' is the same as the value 'v'.- Overrides:
 getDifferencein classBaseDateTimeField- Parameters:
 minuendInstant- the milliseconds from 1970-01-01T00:00:00Z to subtract fromsubtrahendInstant- the milliseconds from 1970-01-01T00:00:00Z to subtract off the minuend- Returns:
 - the difference in the units of this field
 
 
- 
getDifferenceAsLong
public long getDifferenceAsLong(long minuendInstant, long subtrahendInstant)Description copied from class:BaseDateTimeFieldComputes the difference between two instants, as measured in the units of this field. Any fractional units are dropped from the result. Calling getDifference reverses the effect of calling add. In the following code:long instant = ... long v = ... long age = getDifferenceAsLong(add(instant, v), instant);
The value 'age' is the same as the value 'v'.- Overrides:
 getDifferenceAsLongin classBaseDateTimeField- Parameters:
 minuendInstant- the milliseconds from 1970-01-01T00:00:00Z to subtract fromsubtrahendInstant- the milliseconds from 1970-01-01T00:00:00Z to subtract off the minuend- Returns:
 - the difference in the units of this field
 
 
- 
set
public long set(long instant, int value)Set the specified amount of scaled units to the specified time instant.- Overrides:
 setin classDecoratedDateTimeField- Parameters:
 instant- the time instant in millis to update.value- value of scaled units to set.- Returns:
 - the updated time instant.
 - Throws:
 java.lang.IllegalArgumentException- if value is too large or too small.
 
- 
getDurationField
public DurationField getDurationField()
Returns a scaled version of the wrapped field's unit duration field.- Overrides:
 getDurationFieldin classDecoratedDateTimeField- Returns:
 - the duration of this field, or UnsupportedDurationField if field has no duration
 
 
- 
getMinimumValue
public int getMinimumValue()
Get the minimum value for the field.- Overrides:
 getMinimumValuein classDecoratedDateTimeField- Returns:
 - the minimum value
 
 
- 
getMaximumValue
public int getMaximumValue()
Get the maximum value for the field.- Overrides:
 getMaximumValuein classDecoratedDateTimeField- Returns:
 - the maximum value
 
 
- 
roundFloor
public long roundFloor(long instant)
Description copied from class:BaseDateTimeFieldRound to the lowest whole unit of this field. After rounding, the value of this field and all fields of a higher magnitude are retained. The fractional millis that cannot be expressed in whole increments of this field are set to minimum.For example, a datetime of 2002-11-02T23:34:56.789, rounded to the lowest whole hour is 2002-11-02T23:00:00.000.
- Overrides:
 roundFloorin classDecoratedDateTimeField- Parameters:
 instant- the milliseconds from 1970-01-01T00:00:00Z to round- Returns:
 - rounded milliseconds
 
 
- 
remainder
public long remainder(long instant)
Description copied from class:BaseDateTimeFieldReturns the fractional duration milliseconds of this field. In other words, calling remainder returns the duration that roundFloor would subtract.For example, on a datetime of 2002-11-02T23:34:56.789, the remainder by hour is 34 minutes and 56.789 seconds.
The default implementation computes
instant - roundFloor(instant). Subclasses are encouraged to provide a more efficient implementation.- Overrides:
 remainderin classBaseDateTimeField- Parameters:
 instant- the milliseconds from 1970-01-01T00:00:00Z to get the remainder- Returns:
 - remainder duration, in milliseconds
 
 
- 
getDivisor
public int getDivisor()
Returns the divisor applied, in the field's units.- Returns:
 - the divisor
 
 
 - 
 
 -