- java.lang.Object
-
- java.time.chrono.AbstractChronology
-
- org.threeten.extra.chrono.AccountingChronology
-
- All Implemented Interfaces:
Serializable
,Comparable<Chronology>
,Chronology
public final class AccountingChronology extends AbstractChronology implements Serializable
An Accounting calendar system.This chronology defines the rules of a proleptic 52/53-week Accounting calendar system. This calendar system follows the rules as laid down in IRS Publication 538 and the International Financial Reporting Standards. 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)
.This class is proleptic. It implements Accounting chronology rules for the entire time-line.
The fields are defined as follows:
- era - There are two eras, the current 'Current Era' (CE) and the previous era 'Before Current Era' (BCE).
- year-of-era - The year-of-era for the current era increases uniformly from the epoch at year one. For the previous era the year increases from one as time goes backwards.
- proleptic-year - The proleptic year is the same as the year-of-era for the current era. For the previous era, years have zero, then negative values.
- month-of-year - There are 12 or 13 months (periods) in an Accounting year, numbered from 1 to 12 or 13.
- day-of-month - There are 28 or 35 days in each Accounting month, numbered from 1 to 35. Month length depends on how the year has been divided. When the Accounting leap year occurs, a week (7 days) is added to a specific month; this increases to maximum day-of-month numbering to 35 or 42.
- day-of-year - There are 364 days in a standard Accounting year and 371 in a leap year. The days are numbered from 1 to 364 or 1 to 371.
- leap-year - Leap years usually occur every 5 or 6 years. Timing depends on settings chosen.
Implementation Requirements
This class is immutable and thread-safe.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AccountingDate
date(int prolepticYear, int month, int dayOfMonth)
Obtains a local date in Accounting calendar system from the proleptic-year, month-of-year and day-of-month fields.AccountingDate
date(Era era, int yearOfEra, int month, int dayOfMonth)
Obtains a local date in Accounting calendar system from the era, year-of-era, month-of-year and day-of-month fields.AccountingDate
date(TemporalAccessor temporal)
Obtains a Accounting local date from another date-time object.AccountingDate
dateEpochDay(long epochDay)
Obtains a local date in the Accounting calendar system from the epoch-day.AccountingDate
dateNow()
Obtains the current Accounting local date from the system clock in the default time-zone.AccountingDate
dateNow(Clock clock)
Obtains the current Accounting local date from the specified clock.AccountingDate
dateNow(ZoneId zone)
Obtains the current Accounting local date from the system clock in the specified time-zone.AccountingDate
dateYearDay(int prolepticYear, int dayOfYear)
Obtains a local date in Accounting calendar system from the proleptic-year and day-of-year fields.AccountingDate
dateYearDay(Era era, int yearOfEra, int dayOfYear)
Obtains a local date in Accounting calendar system from the era, year-of-era and day-of-year fields.boolean
equals(Object obj)
AccountingEra
eraOf(int era)
List<Era>
eras()
String
getCalendarType()
Gets the calendar type of the underlying calendar system, which is null.String
getId()
Gets the ID of the chronology - 'Accounting'.int
hashCode()
boolean
isLeapYear(long prolepticYear)
Checks if the specified year is a leap year.ChronoLocalDateTime<AccountingDate>
localDateTime(TemporalAccessor temporal)
Obtains a Accounting local date-time from another date-time object.int
prolepticYear(Era era, int yearOfEra)
ValueRange
range(ChronoField field)
String
toString()
ChronoZonedDateTime<AccountingDate>
zonedDateTime(Instant instant, ZoneId zone)
Obtains a Accounting zoned date-time in this chronology from anInstant
.ChronoZonedDateTime<AccountingDate>
zonedDateTime(TemporalAccessor temporal)
Obtains a Accounting zoned date-time from another date-time object.-
Methods inherited from class java.time.chrono.AbstractChronology
compareTo, resolveDate
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.time.chrono.Chronology
epochSecond, epochSecond, getDisplayName, period
-
-
-
-
Method Detail
-
getId
public String getId()
Gets the ID of the chronology - 'Accounting'.The ID uniquely identifies the
Chronology
, but does not differentiate between instances ofAccountingChronology
. It cannot be used to lookup theChronology
usingChronology.of(String)
, because each instance requires setup.- Specified by:
getId
in interfaceChronology
- Returns:
- the chronology ID - 'Accounting'
- See Also:
getCalendarType()
-
getCalendarType
public String getCalendarType()
Gets the calendar type of the underlying calendar system, which is null.The Unicode Locale Data Markup Language (LDML) specification does not define an identifier for 52/53 week calendars used for accounting purposes, and given that setup required is unlikely to do so. For this reason, the calendar type is null.
- Specified by:
getCalendarType
in interfaceChronology
- Returns:
- null, as the calendar is unlikely to be specified in LDML
- See Also:
getId()
-
date
public AccountingDate date(Era era, int yearOfEra, int month, int dayOfMonth)
Obtains a local date in Accounting calendar system from the era, year-of-era, month-of-year and day-of-month fields.- Specified by:
date
in interfaceChronology
- Parameters:
era
- the Accounting era, not nullyearOfEra
- the year-of-eramonth
- the month-of-yeardayOfMonth
- the day-of-month- Returns:
- the Accounting local date, not null
- Throws:
DateTimeException
- if unable to create the dateClassCastException
- if theera
is not aAccountingEra
-
date
public AccountingDate date(int prolepticYear, int month, int dayOfMonth)
Obtains a local date in Accounting calendar system from the proleptic-year, month-of-year and day-of-month fields.- Specified by:
date
in interfaceChronology
- Parameters:
prolepticYear
- the proleptic-yearmonth
- the month-of-yeardayOfMonth
- the day-of-month- Returns:
- the Accounting local date, not null
- Throws:
DateTimeException
- if unable to create the date
-
dateYearDay
public AccountingDate dateYearDay(Era era, int yearOfEra, int dayOfYear)
Obtains a local date in Accounting calendar system from the era, year-of-era and day-of-year fields.- Specified by:
dateYearDay
in interfaceChronology
- Parameters:
era
- the Accounting era, not nullyearOfEra
- the year-of-eradayOfYear
- the day-of-year- Returns:
- the Accounting local date, not null
- Throws:
DateTimeException
- if unable to create the dateClassCastException
- if theera
is not aAccountingEra
-
dateYearDay
public AccountingDate dateYearDay(int prolepticYear, int dayOfYear)
Obtains a local date in Accounting calendar system from the proleptic-year and day-of-year fields.- Specified by:
dateYearDay
in interfaceChronology
- Parameters:
prolepticYear
- the proleptic-yeardayOfYear
- the day-of-year- Returns:
- the Accounting local date, not null
- Throws:
DateTimeException
- if unable to create the date
-
dateEpochDay
public AccountingDate dateEpochDay(long epochDay)
Obtains a local date in the Accounting calendar system from the epoch-day.- Specified by:
dateEpochDay
in interfaceChronology
- Parameters:
epochDay
- the epoch day- Returns:
- the Accounting local date, not null
- Throws:
DateTimeException
- if unable to create the date
-
dateNow
public AccountingDate dateNow()
Obtains the current Accounting local date from the system clock in the default time-zone.This will query the
system clock
in 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.
- Specified by:
dateNow
in interfaceChronology
- Returns:
- the current Accounting local date using the system clock and default time-zone, not null
- Throws:
DateTimeException
- if unable to create the date
-
dateNow
public AccountingDate dateNow(ZoneId zone)
Obtains the current Accounting local date from the system clock in the specified time-zone.This will query the
system clock
to 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.
- Specified by:
dateNow
in interfaceChronology
- Parameters:
zone
- the zone ID to use, not null- Returns:
- the current Accounting local date using the system clock, not null
- Throws:
DateTimeException
- if unable to create the date
-
dateNow
public AccountingDate dateNow(Clock clock)
Obtains the current Accounting local date from the specified clock.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
.- Specified by:
dateNow
in interfaceChronology
- Parameters:
clock
- the clock to use, not null- Returns:
- the current Accounting local date, not null
- Throws:
DateTimeException
- if unable to create the date
-
date
public AccountingDate date(TemporalAccessor temporal)
Obtains a Accounting local date from another date-time object.- Specified by:
date
in interfaceChronology
- Parameters:
temporal
- the date-time object to convert, not null- Returns:
- the Accounting local date, not null
- Throws:
DateTimeException
- if unable to create the date
-
localDateTime
public ChronoLocalDateTime<AccountingDate> localDateTime(TemporalAccessor temporal)
Obtains a Accounting local date-time from another date-time object.- Specified by:
localDateTime
in interfaceChronology
- Parameters:
temporal
- the date-time object to convert, not null- Returns:
- the Accounting local date-time, not null
- Throws:
DateTimeException
- if unable to create the date-time
-
zonedDateTime
public ChronoZonedDateTime<AccountingDate> zonedDateTime(TemporalAccessor temporal)
Obtains a Accounting zoned date-time from another date-time object.- Specified by:
zonedDateTime
in interfaceChronology
- Parameters:
temporal
- the date-time object to convert, not null- Returns:
- the Accounting zoned date-time, not null
- Throws:
DateTimeException
- if unable to create the date-time
-
zonedDateTime
public ChronoZonedDateTime<AccountingDate> zonedDateTime(Instant instant, ZoneId zone)
Obtains a Accounting zoned date-time in this chronology from anInstant
.- Specified by:
zonedDateTime
in interfaceChronology
- Parameters:
instant
- the instant to create the date-time from, not nullzone
- the time-zone, not null- Returns:
- the Accounting zoned date-time, not null
- Throws:
DateTimeException
- if the result exceeds the supported range
-
isLeapYear
public boolean isLeapYear(long prolepticYear)
Checks if the specified year is a leap year.An Accounting proleptic-year is leap if the time between the end of the previous year and the end of the current year is 371 days. This method does not validate the year passed in, and only has a well-defined result for years in the supported range.
- Specified by:
isLeapYear
in interfaceChronology
- Parameters:
prolepticYear
- the proleptic-year to check, not validated for range- Returns:
- true if the year is a leap year
-
prolepticYear
public int prolepticYear(Era era, int yearOfEra)
- Specified by:
prolepticYear
in interfaceChronology
-
eraOf
public AccountingEra eraOf(int era)
- Specified by:
eraOf
in interfaceChronology
-
eras
public List<Era> eras()
- Specified by:
eras
in interfaceChronology
-
range
public ValueRange range(ChronoField field)
- Specified by:
range
in interfaceChronology
-
equals
public boolean equals(Object obj)
- Specified by:
equals
in interfaceChronology
- Overrides:
equals
in classAbstractChronology
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfaceChronology
- Overrides:
hashCode
in classAbstractChronology
-
toString
public String toString()
- Specified by:
toString
in interfaceChronology
- Overrides:
toString
in classAbstractChronology
-
-