Class HybridDate
- All Implemented Interfaces:
Serializable
,Comparable<ChronoLocalDate>
,ChronoLocalDate
,Temporal
,TemporalAccessor
,TemporalAdjuster
This date operates using the British Cutover calendar.
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:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
static HybridDate
from
(TemporalAccessor temporal) Obtains aHybridDate
from a temporal object.Gets the chronology of this date, which is the British Cutover calendar system.getEra()
Gets the era applicable at this date.long
getLong
(TemporalField arg0) int
hashCode()
A hash code for this date.int
Returns the length of the month represented by this date.int
Returns the length of the year represented by this date.minus
(long amountToSubtract, TemporalUnit unit) minus
(TemporalAmount amount) static HybridDate
now()
Obtains the currentHybridDate
from the system clock in the default time-zone.static HybridDate
Obtains the currentHybridDate
from the specified clock.static HybridDate
Obtains the currentHybridDate
from the system clock in the specified time-zone.static HybridDate
of
(int prolepticYear, int month, int dayOfMonth) Obtains aHybridDate
representing a date in the British Cutover calendar system from the proleptic-year, month-of-year and day-of-month fields.plus
(long amountToAdd, TemporalUnit unit) plus
(TemporalAmount amount) <R> R
query
(TemporalQuery<R> query) range
(TemporalField arg0) rangeChrono
(ChronoField field) long
toString()
until
(ChronoLocalDate endDateExclusive) long
until
(Temporal endExclusive, TemporalUnit unit) with
(TemporalAdjuster adjuster) with
(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, isAfter, isBefore, isEqual, isLeapYear, isSupported, isSupported, toString
Methods inherited from interface java.time.temporal.TemporalAccessor
get, getLong, range
-
Method Details
-
now
Obtains the currentHybridDate
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.
- Returns:
- the current date using the system clock and default time-zone, not null
-
now
Obtains the currentHybridDate
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.
- Parameters:
zone
- the zone ID to use, not null- Returns:
- the current date using the system clock, not null
-
now
Obtains the currentHybridDate
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.
- Parameters:
clock
- the clock to use, not null- Returns:
- the current date, not null
- Throws:
DateTimeException
- if the current date cannot be obtained
-
of
Obtains aHybridDate
representing a date in the British Cutover calendar system from the proleptic-year, month-of-year and day-of-month fields.This returns a
HybridDate
with the specified fields.Dates in the middle of the cutover gap, such as the 10th September 1752, will not throw an exception. Instead, the date will be treated as a Julian date and converted to an ISO date, with the day of month shifted by 11 days.
Invalid dates, such as September 31st will throw an exception.
- Parameters:
prolepticYear
- the British Cutover proleptic-yearmonth
- the British Cutover month-of-year, from 1 to 12dayOfMonth
- the British Cutover day-of-month, from 1 to 31- Returns:
- the date in British Cutover calendar system, not null
- Throws:
DateTimeException
- if the value of any field is out of range, or if the day-of-month is invalid for the month-year
-
from
Obtains aHybridDate
from a temporal object.This obtains a date in the British Cutover calendar system based on the specified temporal. A
TemporalAccessor
represents an arbitrary set of date and time information, which this factory converts to an instance ofHybridDate
.The conversion uses the
EPOCH_DAY
field, which is standardized across calendar systems.This method matches the signature of the functional interface
TemporalQuery
allowing it to be used as a query via method reference,HybridDate::from
.- Parameters:
temporal
- the temporal object to convert, not null- Returns:
- the date in British Cutover calendar system, not null
- Throws:
DateTimeException
- if unable to convert to aHybridDate
-
rangeChrono
-
getChronology
Gets the chronology of this date, which is the British Cutover calendar system.The
Chronology
represents the calendar system in use. The era and other fields inChronoField
are defined by the chronology.- Specified by:
getChronology
in interfaceChronoLocalDate
- Returns:
- the British Cutover chronology, not null
-
getEra
Gets the era applicable at this date.The British Cutover calendar system has two eras, 'AD' and 'BC', defined by
JulianEra
.- Specified by:
getEra
in interfaceChronoLocalDate
- Returns:
- the era applicable at this date, not null
-
lengthOfMonth
public int lengthOfMonth()Returns the length of the month represented by this date.This returns the length of the month in days. This takes into account the cutover, returning 19 in September 1752.
- Specified by:
lengthOfMonth
in interfaceChronoLocalDate
- Returns:
- the length of the month in days, from 19 to 31
-
lengthOfYear
public int lengthOfYear()Returns the length of the year represented by this date.This returns the length of the year in days. This takes into account the cutover, returning 355 in 1752.
- Specified by:
lengthOfYear
in interfaceChronoLocalDate
- Returns:
- the length of the month in days, from 19 to 31
-
with
- Specified by:
with
in interfaceChronoLocalDate
- Specified by:
with
in interfaceTemporal
-
with
- Specified by:
with
in interfaceChronoLocalDate
- Specified by:
with
in interfaceTemporal
-
plus
- Specified by:
plus
in interfaceChronoLocalDate
- Specified by:
plus
in interfaceTemporal
-
plus
- Specified by:
plus
in interfaceChronoLocalDate
- Specified by:
plus
in interfaceTemporal
-
minus
- Specified by:
minus
in interfaceChronoLocalDate
- Specified by:
minus
in interfaceTemporal
-
minus
- Specified by:
minus
in interfaceChronoLocalDate
- Specified by:
minus
in interfaceTemporal
-
atTime
- Specified by:
atTime
in interfaceChronoLocalDate
-
until
- Specified by:
until
in interfaceChronoLocalDate
- Specified by:
until
in interfaceTemporal
-
until
- Specified by:
until
in interfaceChronoLocalDate
-
toEpochDay
public long toEpochDay()- Specified by:
toEpochDay
in interfaceChronoLocalDate
-
query
- Specified by:
query
in interfaceChronoLocalDate
- Specified by:
query
in interfaceTemporalAccessor
-
equals
- Specified by:
equals
in interfaceChronoLocalDate
-
hashCode
public int hashCode()A hash code for this date.- Specified by:
hashCode
in interfaceChronoLocalDate
- Returns:
- a suitable hash code based only on the Chronology and the date
-
range
- Specified by:
range
in interfaceTemporalAccessor
-
getLong
- Specified by:
getLong
in interfaceTemporalAccessor
-
toString
- Specified by:
toString
in interfaceChronoLocalDate
- Overrides:
toString
in classObject
-