- java.lang.Object
-
- org.threeten.extra.chrono.AccountingDate
-
- All Implemented Interfaces:
Serializable,Comparable<ChronoLocalDate>,ChronoLocalDate,Temporal,TemporalAccessor,TemporalAdjuster
public final class AccountingDate extends Object implements ChronoLocalDate, Serializable
A date in an Accounting calendar system.This date operates using a given Accounting calendar. An Accounting calendar differs greatly from the ISO calendar. The start of the Accounting calendar will vary against the ISO calendar. Depending on options chosen, it can start as early as
0000-01-26 (ISO)or as late as0001-01-04 (ISO).Implementation Requirements
This class is immutable and thread-safe.This class must be treated as a value type. Do not synchronize, rely on the identity hash code or use the distinction between equals() and ==.
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ChronoLocalDateTime<AccountingDate>atTime(LocalTime localTime)booleanequals(Object obj)Compares this date to another date, including the chronology.static AccountingDatefrom(AccountingChronology chronology, TemporalAccessor temporal)Obtains anAccountingDatefrom a temporal object.AccountingChronologygetChronology()Gets the chronology of this date, which is an Accounting calendar system.longgetLong(TemporalField field)inthashCode()A hash code for this date.intlengthOfMonth()intlengthOfYear()AccountingDateminus(long amountToSubtract, TemporalUnit unit)AccountingDateminus(TemporalAmount amount)static AccountingDatenow(AccountingChronology chronology)Obtains the currentAccountingDatefrom the system clock in the default time-zone, translated with the given AccountingChronology.static AccountingDatenow(AccountingChronology chronology, Clock clock)Obtains the currentAccountingDatefrom the specified clock, translated with the given AccountingChronology.static AccountingDatenow(AccountingChronology chronology, ZoneId zone)Obtains the currentAccountingDatefrom the system clock in the specified time-zone, translated with the given AccountingChronology.static AccountingDateof(AccountingChronology chronology, int prolepticYear, int month, int dayOfMonth)Obtains aAccountingDaterepresenting a date in the given accounting calendar system from the proleptic-year, month-of-year and day-of-month fields.AccountingDateplus(long amountToAdd, TemporalUnit unit)AccountingDateplus(TemporalAmount amount)ValueRangerange(TemporalField field)longtoEpochDay()StringtoString()ChronoPerioduntil(ChronoLocalDate endDateExclusive)longuntil(Temporal endExclusive, TemporalUnit unit)AccountingDatewith(TemporalAdjuster adjuster)AccountingDatewith(TemporalField field, long newValue)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.time.chrono.ChronoLocalDate
adjustInto, compareTo, format, getEra, isAfter, isBefore, isEqual, isLeapYear, isSupported, isSupported, query, toString
-
Methods inherited from interface java.time.temporal.TemporalAccessor
get, getLong, range
-
-
-
-
Method Detail
-
now
public static AccountingDate now(AccountingChronology chronology)
Obtains the currentAccountingDatefrom the system clock in the default time-zone, translated with the given AccountingChronology.This will query the
system clockin the default time-zone to obtain the current date.Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
- Parameters:
chronology- the Accounting chronology to base the date on, not null- Returns:
- the current date using the system clock and default time-zone, not null
- Throws:
DateTimeException- if the current date cannot be obtained, NullPointerException if an AccountingChronology was not provided
-
now
public static AccountingDate now(AccountingChronology chronology, ZoneId zone)
Obtains the currentAccountingDatefrom the system clock in the specified time-zone, translated with the given AccountingChronology.This will query the
system clockto obtain the current date. Specifying the time-zone avoids dependence on the default time-zone.Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
- Parameters:
chronology- the Accounting chronology to base the date on, not nullzone- the zone ID to use, not null- Returns:
- the current date using the system clock, not null
- Throws:
DateTimeException- if the current date cannot be obtained, NullPointerException if an AccountingChronology was not provided
-
now
public static AccountingDate now(AccountingChronology chronology, Clock clock)
Obtains the currentAccountingDatefrom the specified clock, translated with the given AccountingChronology.This will query the specified clock to obtain the current date - today. Using this method allows the use of an alternate clock for testing. The alternate clock may be introduced using dependency injection.
- Parameters:
chronology- the Accounting chronology to base the date on, not nullclock- the clock to use, not null- Returns:
- the current date, not null
- Throws:
DateTimeException- if the current date cannot be obtained, NullPointerException if an AccountingChronology was not provided
-
of
public static AccountingDate of(AccountingChronology chronology, int prolepticYear, int month, int dayOfMonth)
Obtains aAccountingDaterepresenting a date in the given accounting calendar system from the proleptic-year, month-of-year and day-of-month fields.This returns a
AccountingDatewith the specified fields. The day must be valid for the year and month, otherwise an exception will be thrown.- Parameters:
chronology- the Accounting chronology to base the date on, not nullprolepticYear- the Accounting proleptic-yearmonth- the Accounting month-of-year, from 1 to 12 or 1 to 13dayOfMonth- the Accounting day-of-month, from 1 to 35 or 1 to 42- Returns:
- the date in the given Accounting calendar system, not null
- Throws:
DateTimeException- if the value of any field is out of range, if the day-of-month is invalid for the month-year, or if an AccountingChronology was not provided
-
from
public static AccountingDate from(AccountingChronology chronology, TemporalAccessor temporal)
Obtains anAccountingDatefrom a temporal object.This obtains a date in the specified Accounting calendar system based on the specified temporal. A
TemporalAccessorrepresents an arbitrary set of date and time information, which this factory converts to an instance ofAccountingDate.The conversion typically uses the
EPOCH_DAYfield, which is standardized across calendar systems.This method almost matches the signature of the functional interface
TemporalQueryand must be used as a query via something that supplies the missing parameter, such as a curried method reference,temporal -> AccountingDate.from(chronology, temporal)(wherechronologyresolves to a set upAccountingChronology).- Parameters:
chronology- the Accounting chronology to base the date on, not nulltemporal- the temporal object to convert, not null- Returns:
- the date in Accounting calendar system, not null
- Throws:
DateTimeException- if unable to convert to anAccountingDate, NullPointerException if an AccountingChronology was not provided
-
getChronology
public AccountingChronology getChronology()
Gets the chronology of this date, which is an Accounting calendar system.The
Chronologyrepresents the calendar system in use. The era and other fields inChronoFieldare defined by the chronology.- Specified by:
getChronologyin interfaceChronoLocalDate- Returns:
- the Accounting chronology, not null
-
lengthOfMonth
public int lengthOfMonth()
- Specified by:
lengthOfMonthin interfaceChronoLocalDate
-
lengthOfYear
public int lengthOfYear()
- Specified by:
lengthOfYearin interfaceChronoLocalDate
-
with
public AccountingDate with(TemporalAdjuster adjuster)
- Specified by:
within interfaceChronoLocalDate- Specified by:
within interfaceTemporal
-
with
public AccountingDate with(TemporalField field, long newValue)
- Specified by:
within interfaceChronoLocalDate- Specified by:
within interfaceTemporal
-
plus
public AccountingDate plus(TemporalAmount amount)
- Specified by:
plusin interfaceChronoLocalDate- Specified by:
plusin interfaceTemporal
-
plus
public AccountingDate plus(long amountToAdd, TemporalUnit unit)
- Specified by:
plusin interfaceChronoLocalDate- Specified by:
plusin interfaceTemporal
-
minus
public AccountingDate minus(TemporalAmount amount)
- Specified by:
minusin interfaceChronoLocalDate- Specified by:
minusin interfaceTemporal
-
minus
public AccountingDate minus(long amountToSubtract, TemporalUnit unit)
- Specified by:
minusin interfaceChronoLocalDate- Specified by:
minusin interfaceTemporal
-
atTime
public ChronoLocalDateTime<AccountingDate> atTime(LocalTime localTime)
- Specified by:
atTimein interfaceChronoLocalDate
-
until
public long until(Temporal endExclusive, TemporalUnit unit)
- Specified by:
untilin interfaceChronoLocalDate- Specified by:
untilin interfaceTemporal
-
until
public ChronoPeriod until(ChronoLocalDate endDateExclusive)
- Specified by:
untilin interfaceChronoLocalDate
-
toEpochDay
public long toEpochDay()
- Specified by:
toEpochDayin interfaceChronoLocalDate
-
equals
public boolean equals(Object obj)
Compares this date to another date, including the chronology.Compares this date with another ensuring that the date is the same.
Only objects of this concrete type are compared, other types return false. To compare the dates of two
TemporalAccessorinstances, including dates in two different chronologies, useChronoField.EPOCH_DAYas a comparator.- Specified by:
equalsin interfaceChronoLocalDate- Parameters:
obj- the object to check, null returns false- Returns:
- true if this is equal to the other date
-
hashCode
public int hashCode()
A hash code for this date.- Specified by:
hashCodein interfaceChronoLocalDate- Returns:
- a suitable hash code based only on the Chronology and the date
-
range
public ValueRange range(TemporalField field)
- Specified by:
rangein interfaceTemporalAccessor
-
getLong
public long getLong(TemporalField field)
- Specified by:
getLongin interfaceTemporalAccessor
-
toString
public String toString()
- Specified by:
toStringin interfaceChronoLocalDate- Overrides:
toStringin classObject
-
-