|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.threeten.bp.chrono.ChronoPeriod
org.threeten.bp.Period
public final class Period
A date-based amount of time, such as '2 years, 3 months and 4 days'.
This class models a quantity or amount of time in terms of years, months and days.
See Duration for the time-based equivalent to this class.
Durations and period differ in their treatment of daylight savings time
when added to ZonedDateTime. A Duration will add an exact
number of seconds, thus a duration of one day is always exactly 24 hours.
By contrast, a Period will add a conceptual day, trying to maintain
the local time.
For example, consider adding a period of one day and a duration of one day to
18:00 on the evening before a daylight savings gap. The Period will add
the conceptual day and result in a ZonedDateTime at 18:00 the following day.
By contrast, the Duration will add exactly 24 hours, resulting in a
ZonedDateTime at 19:00 the following day (assuming a one hour DST gap).
The supported units of a period are YEARS,
MONTHS and DAYS.
All three fields are always present, but may be set to zero.
The period may be used with any calendar system. The meaning of a "year" or "month" is only applied when the object is added to a date.
The period is modeled as a directed amount of time, meaning that individual parts of the period may be negative.
The months and years fields may be normalized. The normalization assumes a 12 month year, so is not appropriate for all calendar systems.
| Field Summary | |
|---|---|
static Period |
ZERO
A constant for a period of zero. |
| Method Summary | |
|---|---|
Temporal |
addTo(Temporal temporal)
Adds this period to the specified temporal object. |
static Period |
between(LocalDate startDate,
LocalDate endDate)
Obtains a Period consisting of the number of years, months,
and days between two dates. |
boolean |
equals(Object obj)
Checks if this period is equal to another period. |
static Period |
from(TemporalAmount amount)
Obtains an instance of Period from a temporal amount. |
long |
get(TemporalUnit unit)
Gets the value of the requested unit. |
Chronology |
getChronology()
Gets the chronology that defines the meaning of the supported units. |
int |
getDays()
Gets the amount of days of this period. |
int |
getMonths()
Gets the amount of months of this period. |
List<TemporalUnit> |
getUnits()
Gets the set of units supported by this period. |
int |
getYears()
Gets the amount of years of this period. |
int |
hashCode()
A hash code for this period. |
boolean |
isNegative()
Checks if any of the three units of this period are negative. |
boolean |
isZero()
Checks if all three units of this period are zero. |
Period |
minus(TemporalAmount amountToSubtract)
Returns a copy of this period with the specified amount subtracted. |
Period |
minusDays(long daysToSubtract)
Returns a copy of this period with the specified days subtracted. |
Period |
minusMonths(long monthsToSubtract)
Returns a copy of this period with the specified months subtracted. |
Period |
minusYears(long yearsToSubtract)
Returns a copy of this period with the specified years subtracted. |
Period |
multipliedBy(int scalar)
Returns a new instance with each element in this period multiplied by the specified scalar. |
Period |
negated()
Returns a new instance with each amount in this period negated. |
Period |
normalized()
Returns a copy of this period with the years and months normalized using a 12 month year. |
static Period |
of(int years,
int months,
int days)
Obtains a Period representing a number of years, months and days. |
static Period |
ofDays(int days)
Obtains a Period representing a number of days. |
static Period |
ofMonths(int months)
Obtains a Period representing a number of months. |
static Period |
ofWeeks(int weeks)
Obtains a Period representing a number of weeks. |
static Period |
ofYears(int years)
Obtains a Period representing a number of years. |
static Period |
parse(CharSequence text)
Obtains a Period from a text string such as PnYnMnD. |
Period |
plus(TemporalAmount amountToAdd)
Returns a copy of this period with the specified amount added. |
Period |
plusDays(long daysToAdd)
Returns a copy of this period with the specified days added. |
Period |
plusMonths(long monthsToAdd)
Returns a copy of this period with the specified months added. |
Period |
plusYears(long yearsToAdd)
Returns a copy of this period with the specified years added. |
Temporal |
subtractFrom(Temporal temporal)
Subtracts this period from the specified temporal object. |
String |
toString()
Outputs this period as a String, such as P6Y3M1D. |
long |
toTotalMonths()
Gets the total number of months in this period using a 12 month year. |
Period |
withDays(int days)
Returns a copy of this period with the specified amount of days. |
Period |
withMonths(int months)
Returns a copy of this period with the specified amount of months. |
Period |
withYears(int years)
Returns a copy of this period with the specified amount of years. |
| Methods inherited from class org.threeten.bp.chrono.ChronoPeriod |
|---|
between |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final Period ZERO
| Method Detail |
|---|
public static Period ofYears(int years)
Period representing a number of years.
The resulting period will have the specified years. The months and days units will be zero.
years - the number of years, positive or negative
public static Period ofMonths(int months)
Period representing a number of months.
The resulting period will have the specified months. The years and days units will be zero.
months - the number of months, positive or negative
public static Period ofWeeks(int weeks)
Period representing a number of weeks.
The resulting period will have days equal to the weeks multiplied by seven. The years and months units will be zero.
weeks - the number of weeks, positive or negative
public static Period ofDays(int days)
Period representing a number of days.
The resulting period will have the specified days. The years and months units will be zero.
days - the number of days, positive or negative
public static Period of(int years,
int months,
int days)
Period representing a number of years, months and days.
This creates an instance based on years, months and days.
years - the amount of years, may be negativemonths - the amount of months, may be negativedays - the amount of days, may be negative
public static Period from(TemporalAmount amount)
Period from a temporal amount.
This obtains a period based on the specified amount.
A TemporalAmount represents an amount of time, which may be
date-based or time-based, which this factory extracts to a Period.
The conversion loops around the set of units from the amount and uses
the YEARS, MONTHS
and DAYS units to create a period.
If any other units are found then an exception is thrown.
If the amount is a ChronoPeriod then it must use the ISO chronology.
amount - the temporal amount to convert, not null
DateTimeException - if unable to convert to a Period
ArithmeticException - if the amount of years, months or days exceeds an int
public static Period between(LocalDate startDate,
LocalDate endDate)
Period consisting of the number of years, months,
and days between two dates.
The start date is included, but the end date is not.
The period is calculated by removing complete months, then calculating
the remaining number of days, adjusting to ensure that both have the same sign.
The number of months is then split into years and months based on a 12 month year.
A month is considered if the end day-of-month is greater than or equal to the start day-of-month.
For example, from 2010-01-15 to 2011-03-18 is one year, two months and three days.
The result of this method can be a negative period if the end is before the start. The negative sign will be the same in each of year, month and day.
startDate - the start date, inclusive, not nullendDate - the end date, exclusive, not null
ChronoLocalDate.until(ChronoLocalDate)public static Period parse(CharSequence text)
Period from a text string such as PnYnMnD.
This will parse the string produced by toString() which is
based on the ISO-8601 period formats PnYnMnD and PnW.
The string starts with an optional sign, denoted by the ASCII negative
or positive symbol. If negative, the whole period is negated.
The ASCII letter "P" is next in upper or lower case.
There are then four sections, each consisting of a number and a suffix.
At least one of the four sections must be present.
The sections have suffixes in ASCII of "Y", "M", "W" and "D" for
years, months, weeks and days, accepted in upper or lower case.
The suffixes must occur in order.
The number part of each section must consist of ASCII digits.
The number may be prefixed by the ASCII negative or positive symbol.
The number must parse to an int.
The leading plus/minus sign, and negative values for other units are
not part of the ISO-8601 standard. In addition, ISO-8601 does not
permit mixing between the PnYnMnD and PnW formats.
Any week-based input is multiplied by 7 and treated as a number of days.
For example, the following are valid inputs:
"P2Y" -- Period.ofYears(2) "P3M" -- Period.ofMonths(3) "P4W" -- Period.ofWeeks(4) "P5D" -- Period.ofDays(5) "P1Y2M3D" -- Period.of(1, 2, 3) "P1Y2M3W4D" -- Period.of(1, 2, 25) "P-1Y2M" -- Period.of(-1, 2, 0) "-P1Y2M" -- Period.of(-1, -2, 0)
text - the text to parse, not null
DateTimeParseException - if the text cannot be parsed to a periodpublic List<TemporalUnit> getUnits()
ChronoPeriod
The supported units are chronology specific.
They will typically be YEARS,
MONTHS and DAYS.
They are returned in order from largest to smallest.
This set can be used in conjunction with ChronoPeriod.get(TemporalUnit)
to access the entire state of the period.
getUnits in interface TemporalAmountgetUnits in class ChronoPeriodpublic Chronology getChronology()
ChronoPeriod
The period is defined by the chronology.
It controls the supported units and restricts addition/subtraction
to ChronoLocalDate instances of the same chronology.
getChronology in class ChronoPeriodpublic long get(TemporalUnit unit)
ChronoPeriod
The supported units are chronology specific.
They will typically be YEARS,
MONTHS and DAYS.
Requesting an unsupported unit will throw an exception.
get in interface TemporalAmountget in class ChronoPeriodunit - the TemporalUnit for which to return the value
public boolean isZero()
A zero period has the value zero for the years, months and days units.
isZero in class ChronoPeriodpublic boolean isNegative()
This checks whether the years, months or days units are less than zero.
isNegative in class ChronoPeriodpublic int getYears()
This returns the years unit.
The months unit is not normalized with the years unit. This means that a period of "15 months" is different to a period of "1 year and 3 months".
public int getMonths()
This returns the months unit.
The months unit is not normalized with the years unit. This means that a period of "15 months" is different to a period of "1 year and 3 months".
public int getDays()
This returns the days unit.
public Period withYears(int years)
This sets the amount of the years unit in a copy of this period. The months and days units are unaffected.
The months unit is not normalized with the years unit. This means that a period of "15 months" is different to a period of "1 year and 3 months".
This instance is immutable and unaffected by this method call.
years - the years to represent, may be negative
Period based on this period with the requested years, not nullpublic Period withMonths(int months)
This sets the amount of the months unit in a copy of this period. The years and days units are unaffected.
The months unit is not normalized with the years unit. This means that a period of "15 months" is different to a period of "1 year and 3 months".
This instance is immutable and unaffected by this method call.
months - the months to represent, may be negative
Period based on this period with the requested months, not nullpublic Period withDays(int days)
This sets the amount of the days unit in a copy of this period. The years and months units are unaffected.
This instance is immutable and unaffected by this method call.
days - the days to represent, may be negative
Period based on this period with the requested days, not nullpublic Period plus(TemporalAmount amountToAdd)
This input amount is converted to a Period using from(TemporalAmount).
This operates separately on the years, months and days.
For example, "1 year, 6 months and 3 days" plus "2 years, 2 months and 2 days" returns "3 years, 8 months and 5 days".
This instance is immutable and unaffected by this method call.
plus in class ChronoPeriodamountToAdd - the period to add, not null
Period based on this period with the requested period added, not null
ArithmeticException - if numeric overflow occurspublic Period plusYears(long yearsToAdd)
This adds the amount to the years unit in a copy of this period. The months and days units are unaffected. For example, "1 year, 6 months and 3 days" plus 2 years returns "3 years, 6 months and 3 days".
This instance is immutable and unaffected by this method call.
yearsToAdd - the years to add, positive or negative
Period based on this period with the specified years added, not null
ArithmeticException - if numeric overflow occurspublic Period plusMonths(long monthsToAdd)
This adds the amount to the months unit in a copy of this period. The years and days units are unaffected. For example, "1 year, 6 months and 3 days" plus 2 months returns "1 year, 8 months and 3 days".
This instance is immutable and unaffected by this method call.
monthsToAdd - the months to add, positive or negative
Period based on this period with the specified months added, not null
ArithmeticException - if numeric overflow occurspublic Period plusDays(long daysToAdd)
This adds the amount to the days unit in a copy of this period. The years and months units are unaffected. For example, "1 year, 6 months and 3 days" plus 2 days returns "1 year, 6 months and 5 days".
This instance is immutable and unaffected by this method call.
daysToAdd - the days to add, positive or negative
Period based on this period with the specified days added, not null
ArithmeticException - if numeric overflow occurspublic Period minus(TemporalAmount amountToSubtract)
This input amount is converted to a Period using from(TemporalAmount).
This operates separately on the years, months and days.
For example, "1 year, 6 months and 3 days" minus "2 years, 2 months and 2 days" returns "-1 years, 4 months and 1 day".
This instance is immutable and unaffected by this method call.
minus in class ChronoPeriodamountToSubtract - the period to subtract, not null
Period based on this period with the requested period subtracted, not null
ArithmeticException - if numeric overflow occurspublic Period minusYears(long yearsToSubtract)
This subtracts the amount from the years unit in a copy of this period. The months and days units are unaffected. For example, "1 year, 6 months and 3 days" minus 2 years returns "-1 years, 6 months and 3 days".
This instance is immutable and unaffected by this method call.
yearsToSubtract - the years to subtract, positive or negative
Period based on this period with the specified years subtracted, not null
ArithmeticException - if numeric overflow occurspublic Period minusMonths(long monthsToSubtract)
This subtracts the amount from the months unit in a copy of this period. The years and days units are unaffected. For example, "1 year, 6 months and 3 days" minus 2 months returns "1 year, 4 months and 3 days".
This instance is immutable and unaffected by this method call.
monthsToSubtract - the years to subtract, positive or negative
Period based on this period with the specified months subtracted, not null
ArithmeticException - if numeric overflow occurspublic Period minusDays(long daysToSubtract)
This subtracts the amount from the days unit in a copy of this period. The years and months units are unaffected. For example, "1 year, 6 months and 3 days" minus 2 days returns "1 year, 6 months and 1 day".
This instance is immutable and unaffected by this method call.
daysToSubtract - the months to subtract, positive or negative
Period based on this period with the specified days subtracted, not null
ArithmeticException - if numeric overflow occurspublic Period multipliedBy(int scalar)
This simply multiplies each field, years, months, days and normalized time, by the scalar. No normalization is performed.
multipliedBy in class ChronoPeriodscalar - the scalar to multiply by, not null
Period based on this period with the amounts multiplied by the scalar, not null
ArithmeticException - if numeric overflow occurspublic Period negated()
negated in class ChronoPeriodPeriod based on this period with the amounts negated, not null
ArithmeticException - if numeric overflow occurspublic Period normalized()
This normalizes the years and months units, leaving the days unit unchanged. The months unit is adjusted to have an absolute value less than 11, with the years unit being adjusted to compensate. For example, a period of "1 Year and 15 months" will be normalized to "2 years and 3 months".
The sign of the years and months units will be the same after normalization. For example, a period of "1 year and -25 months" will be normalized to "-1 year and -1 month".
This normalization uses a 12 month year which is not valid for all calendar systems.
This instance is immutable and unaffected by this method call.
normalized in class ChronoPeriodPeriod based on this period with excess months normalized to years, not null
ArithmeticException - if numeric overflow occurspublic long toTotalMonths()
This returns the total number of months in the period by multiplying the number of years by 12 and adding the number of months.
This uses a 12 month year which is not valid for all calendar systems.
This instance is immutable and unaffected by this method call.
public Temporal addTo(Temporal temporal)
This returns a temporal object of the same observable type as the input with this period added.
In most cases, it is clearer to reverse the calling pattern by using
Temporal.plus(TemporalAmount).
// these two lines are equivalent, but the second approach is recommended dateTime = thisPeriod.addTo(dateTime); dateTime = dateTime.plus(thisPeriod);
The calculation will add the years, then months, then days. Only non-zero amounts will be added. If the date-time has a calendar system with a fixed number of months in a year, then the years and months will be combined before being added.
This instance is immutable and unaffected by this method call.
addTo in interface TemporalAmountaddTo in class ChronoPeriodtemporal - the temporal object to adjust, not null
DateTimeException - if unable to add
ArithmeticException - if numeric overflow occurspublic Temporal subtractFrom(Temporal temporal)
This returns a temporal object of the same observable type as the input with this period subtracted.
In most cases, it is clearer to reverse the calling pattern by using
Temporal.minus(TemporalAmount).
// these two lines are equivalent, but the second approach is recommended dateTime = thisPeriod.subtractFrom(dateTime); dateTime = dateTime.minus(thisPeriod);
The calculation operates as follows. First, the chronology of the temporal is checked to ensure it is ISO chronology or null. Second, if the months are zero, the years are added if non-zero, otherwise the combination of years and months is added if non-zero. Finally, any days are added. The calculation will subtract the years, then months, then days. Only non-zero amounts will be subtracted. If the date-time has a calendar system with a fixed number of months in a year, then the years and months will be combined before being subtracted.
This instance is immutable and unaffected by this method call.
subtractFrom in interface TemporalAmountsubtractFrom in class ChronoPeriodtemporal - the temporal object to adjust, not null
DateTimeException - if unable to subtract
ArithmeticException - if numeric overflow occurspublic boolean equals(Object obj)
The comparison is based on the amounts held in the period. To be equal, the years, months and days units must be individually equal. Note that this means that a period of "15 Months" is not equal to a period of "1 Year and 3 Months".
equals in class ChronoPeriodobj - the object to check, null returns false
public int hashCode()
hashCode in class ChronoPeriodpublic String toString()
String, such as P6Y3M1D.
The output will be in the ISO-8601 period format. A zero period will be represented as zero days, 'P0D'.
toString in class ChronoPeriod
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||