Class CopticDate
- All Implemented Interfaces:
Serializable,Comparable<ChronoLocalDate>,ChronoLocalDate,Temporal,TemporalAccessor,TemporalAdjuster
This date operates using the Coptic calendar.
This calendar system is primarily used in Christian Egypt.
Dates are aligned such that 0001-01-01 (Coptic) is 0284-08-29 (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:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares this date to another date, including the chronology.static CopticDatefrom(TemporalAccessor temporal) Obtains aCopticDatefrom a temporal object.Gets the chronology of this date, which is the Coptic calendar system.getEra()Gets the era applicable at this date.longgetLong(TemporalField field) inthashCode()A hash code for this date.intReturns the length of the month represented by this date.minus(long amountToSubtract, TemporalUnit unit) minus(TemporalAmount amount) static CopticDatenow()Obtains the currentCopticDatefrom the system clock in the default time-zone.static CopticDateObtains the currentCopticDatefrom the specified clock.static CopticDateObtains the currentCopticDatefrom the system clock in the specified time-zone.static CopticDateof(int prolepticYear, int month, int dayOfMonth) Obtains aCopticDaterepresenting a date in the Coptic calendar system from the proleptic-year, month-of-year and day-of-month fields.plus(long amountToAdd, TemporalUnit unit) plus(TemporalAmount amount) range(TemporalField field) longtoString()until(ChronoLocalDate endDateExclusive) longuntil(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, waitMethods inherited from interface java.time.chrono.ChronoLocalDate
adjustInto, compareTo, equals, format, hashCode, isAfter, isBefore, isEqual, isLeapYear, isSupported, isSupported, lengthOfMonth, lengthOfYear, query, toEpochDay, toStringMethods inherited from interface java.time.temporal.TemporalAccessor
get, getLong, range
-
Method Details
-
now
Obtains the currentCopticDatefrom the system clock in the default time-zone.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.
- Returns:
- the current date using the system clock and default time-zone, not null
-
now
Obtains the currentCopticDatefrom the system clock in the specified time-zone.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:
zone- the zone ID to use, not null- Returns:
- the current date using the system clock, not null
-
now
Obtains the currentCopticDatefrom 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 aCopticDaterepresenting a date in the Coptic calendar system from the proleptic-year, month-of-year and day-of-month fields.This returns a
CopticDatewith the specified fields. The day must be valid for the year and month, otherwise an exception will be thrown.- Parameters:
prolepticYear- the Coptic proleptic-yearmonth- the Coptic month-of-year, from 1 to 13dayOfMonth- the Coptic day-of-month, from 1 to 30- Returns:
- the date in Coptic 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 aCopticDatefrom a temporal object.This obtains a date in the Coptic calendar system based on the specified temporal. A
TemporalAccessorrepresents an arbitrary set of date and time information, which this factory converts to an instance ofCopticDate.The conversion typically uses the
EPOCH_DAYfield, which is standardized across calendar systems.This method matches the signature of the functional interface
TemporalQueryallowing it to be used as a query via method reference,CopticDate::from.- Parameters:
temporal- the temporal object to convert, not null- Returns:
- the date in Coptic calendar system, not null
- Throws:
DateTimeException- if unable to convert to aCopticDate
-
getChronology
Gets the chronology of this date, which is the Coptic 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 Coptic chronology, not null
-
getEra
Gets the era applicable at this date.The Coptic calendar system has two eras, 'AM' and 'BEFORE_AM', defined by
CopticEra.- Specified by:
getErain interfaceChronoLocalDate- Returns:
- the era applicable at this date, not null
-
with
- Specified by:
within interfaceChronoLocalDate- Specified by:
within interfaceTemporal
-
with
- Specified by:
within interfaceChronoLocalDate- Specified by:
within interfaceTemporal
-
plus
- Specified by:
plusin interfaceChronoLocalDate- Specified by:
plusin interfaceTemporal
-
plus
- Specified by:
plusin interfaceChronoLocalDate- Specified by:
plusin interfaceTemporal
-
minus
- Specified by:
minusin interfaceChronoLocalDate- Specified by:
minusin interfaceTemporal
-
minus
- Specified by:
minusin interfaceChronoLocalDate- Specified by:
minusin interfaceTemporal
-
atTime
- Specified by:
atTimein interfaceChronoLocalDate
-
until
- Specified by:
untilin interfaceChronoLocalDate- Specified by:
untilin interfaceTemporal
-
until
- Specified by:
untilin interfaceChronoLocalDate
-
lengthOfMonth
public int lengthOfMonth()Returns the length of the month represented by this date.This returns the length of the month in days. Months 1 to 12 have 30 days. Month 13 has 5 or 6 days.
- Returns:
- the length of the month in days, from 5 to 30
-
toEpochDay
public long toEpochDay() -
range
- Specified by:
rangein interfaceTemporalAccessor
-
getLong
- Specified by:
getLongin interfaceTemporalAccessor
-
equals
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- Overrides:
equalsin classObject- 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- Overrides:
hashCodein classObject- Returns:
- a suitable hash code based only on the Chronology and the date
-
toString
- Specified by:
toStringin interfaceChronoLocalDate- Overrides:
toStringin classObject
-