- java.lang.Object
-
- org.threeten.extra.chrono.EthiopicDate
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<java.time.chrono.ChronoLocalDate>,java.time.chrono.ChronoLocalDate,java.time.temporal.Temporal,java.time.temporal.TemporalAccessor,java.time.temporal.TemporalAdjuster
public final class EthiopicDate extends java.lang.Object implements java.time.chrono.ChronoLocalDate, java.io.SerializableA date in the Ethiopic calendar system.This date operates using the Ethiopic calendar. This calendar system is primarily used in Ethiopia. Dates are aligned such that
0001-01-01 (Ethiopic)is0008-08-27 (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 java.time.chrono.ChronoLocalDateTime<EthiopicDate>atTime(java.time.LocalTime localTime)booleanequals(java.lang.Object obj)Compares this date to another date, including the chronology.static EthiopicDatefrom(java.time.temporal.TemporalAccessor temporal)Obtains aEthiopicDatefrom a temporal object.EthiopicChronologygetChronology()Gets the chronology of this date, which is the Ethiopic calendar system.EthiopicEragetEra()Gets the era applicable at this date.longgetLong(java.time.temporal.TemporalField field)inthashCode()A hash code for this date.intlengthOfMonth()Returns the length of the month represented by this date.EthiopicDateminus(long amountToSubtract, java.time.temporal.TemporalUnit unit)EthiopicDateminus(java.time.temporal.TemporalAmount amount)static EthiopicDatenow()Obtains the currentEthiopicDatefrom the system clock in the default time-zone.static EthiopicDatenow(java.time.Clock clock)Obtains the currentEthiopicDatefrom the specified clock.static EthiopicDatenow(java.time.ZoneId zone)Obtains the currentEthiopicDatefrom the system clock in the specified time-zone.static EthiopicDateof(int prolepticYear, int month, int dayOfMonth)Obtains aEthiopicDaterepresenting a date in the Ethiopic calendar system from the proleptic-year, month-of-year and day-of-month fields.EthiopicDateplus(long amountToAdd, java.time.temporal.TemporalUnit unit)EthiopicDateplus(java.time.temporal.TemporalAmount amount)java.time.temporal.ValueRangerange(java.time.temporal.TemporalField field)longtoEpochDay()java.lang.StringtoString()java.time.chrono.ChronoPerioduntil(java.time.chrono.ChronoLocalDate endDateExclusive)longuntil(java.time.temporal.Temporal endExclusive, java.time.temporal.TemporalUnit unit)EthiopicDatewith(java.time.temporal.TemporalAdjuster adjuster)EthiopicDatewith(java.time.temporal.TemporalField field, long newValue)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
now
public static EthiopicDate now()
Obtains the currentEthiopicDatefrom 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
public static EthiopicDate now(java.time.ZoneId zone)
Obtains the currentEthiopicDatefrom 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
public static EthiopicDate now(java.time.Clock clock)
Obtains the currentEthiopicDatefrom 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:
java.time.DateTimeException- if the current date cannot be obtained
-
of
public static EthiopicDate of(int prolepticYear, int month, int dayOfMonth)
Obtains aEthiopicDaterepresenting a date in the Ethiopic calendar system from the proleptic-year, month-of-year and day-of-month fields.This returns a
EthiopicDatewith the specified fields. The day must be valid for the year and month, otherwise an exception will be thrown.- Parameters:
prolepticYear- the Ethiopic proleptic-yearmonth- the Ethiopic month-of-year, from 1 to 13dayOfMonth- the Ethiopic day-of-month, from 1 to 30- Returns:
- the date in Ethiopic calendar system, not null
- Throws:
java.time.DateTimeException- if the value of any field is out of range, or if the day-of-month is invalid for the month-year
-
from
public static EthiopicDate from(java.time.temporal.TemporalAccessor temporal)
Obtains aEthiopicDatefrom a temporal object.This obtains a date in the Ethiopic calendar system based on the specified temporal. A
TemporalAccessorrepresents an arbitrary set of date and time information, which this factory converts to an instance ofEthiopicDate.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,EthiopicDate::from.- Parameters:
temporal- the temporal object to convert, not null- Returns:
- the date in Ethiopic calendar system, not null
- Throws:
java.time.DateTimeException- if unable to convert to aEthiopicDate
-
getChronology
public EthiopicChronology getChronology()
Gets the chronology of this date, which is the Ethiopic calendar system.The
Chronologyrepresents the calendar system in use. The era and other fields inChronoFieldare defined by the chronology.- Specified by:
getChronologyin interfacejava.time.chrono.ChronoLocalDate- Returns:
- the Ethiopic chronology, not null
-
getEra
public EthiopicEra getEra()
Gets the era applicable at this date.The Ethiopic calendar system has two eras, 'INCARNATION' and 'BEFORE_INCARNATION', defined by
EthiopicEra.- Specified by:
getErain interfacejava.time.chrono.ChronoLocalDate- Returns:
- the era applicable at this date, not null
-
with
public EthiopicDate with(java.time.temporal.TemporalAdjuster adjuster)
- Specified by:
within interfacejava.time.chrono.ChronoLocalDate- Specified by:
within interfacejava.time.temporal.Temporal
-
with
public EthiopicDate with(java.time.temporal.TemporalField field, long newValue)
- Specified by:
within interfacejava.time.chrono.ChronoLocalDate- Specified by:
within interfacejava.time.temporal.Temporal
-
plus
public EthiopicDate plus(java.time.temporal.TemporalAmount amount)
- Specified by:
plusin interfacejava.time.chrono.ChronoLocalDate- Specified by:
plusin interfacejava.time.temporal.Temporal
-
plus
public EthiopicDate plus(long amountToAdd, java.time.temporal.TemporalUnit unit)
- Specified by:
plusin interfacejava.time.chrono.ChronoLocalDate- Specified by:
plusin interfacejava.time.temporal.Temporal
-
minus
public EthiopicDate minus(java.time.temporal.TemporalAmount amount)
- Specified by:
minusin interfacejava.time.chrono.ChronoLocalDate- Specified by:
minusin interfacejava.time.temporal.Temporal
-
minus
public EthiopicDate minus(long amountToSubtract, java.time.temporal.TemporalUnit unit)
- Specified by:
minusin interfacejava.time.chrono.ChronoLocalDate- Specified by:
minusin interfacejava.time.temporal.Temporal
-
atTime
public java.time.chrono.ChronoLocalDateTime<EthiopicDate> atTime(java.time.LocalTime localTime)
- Specified by:
atTimein interfacejava.time.chrono.ChronoLocalDate
-
until
public long until(java.time.temporal.Temporal endExclusive, java.time.temporal.TemporalUnit unit)- Specified by:
untilin interfacejava.time.chrono.ChronoLocalDate- Specified by:
untilin interfacejava.time.temporal.Temporal
-
until
public java.time.chrono.ChronoPeriod until(java.time.chrono.ChronoLocalDate endDateExclusive)
- Specified by:
untilin interfacejava.time.chrono.ChronoLocalDate
-
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
public java.time.temporal.ValueRange range(java.time.temporal.TemporalField field)
- Specified by:
rangein interfacejava.time.temporal.TemporalAccessor
-
getLong
public long getLong(java.time.temporal.TemporalField field)
- Specified by:
getLongin interfacejava.time.temporal.TemporalAccessor
-
equals
public boolean equals(java.lang.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 interfacejava.time.chrono.ChronoLocalDate- Overrides:
equalsin classjava.lang.Object- 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 interfacejava.time.chrono.ChronoLocalDate- Overrides:
hashCodein classjava.lang.Object- Returns:
- a suitable hash code based only on the Chronology and the date
-
toString
public java.lang.String toString()
- Specified by:
toStringin interfacejava.time.chrono.ChronoLocalDate- Overrides:
toStringin classjava.lang.Object
-
-