This date operates using one of several variants of the Hijrah calendar.
The Hijrah calendar has a different total of days in a year than
Gregorian calendar, and the length of each month is based on the period
of a complete revolution of the moon around the earth
(as between successive new moons).
Refer to the HijrahChronology
for details of supported variants.
Each HijrahDate is created bound to a particular HijrahChronology,
The same chronology is propagated to each HijrahDate computed from the date.
To use a different Hijrah variant, its HijrahChronology can be used
to create new HijrahDate instances.
Alternatively, the withVariant
method can be used to convert
to a new HijrahChronology.
This is a value-based
class; programmers should treat instances that are
equal as interchangeable and should not
use instances for synchronization, or unpredictable behavior may
occur. For example, in a future release, synchronization may fail.
The equals
method should be used for comparisons.
Implementation Specification
This class is immutable and thread-safe.
Modifier and Type | Field and Description |
---|---|
private final transient HijrahChronology | chrono
The Chronology of this HijrahDate. |
private final transient int | dayOfMonth
The day-of-month. |
private final transient int | monthOfYear
The month-of-year. |
private final transient int | prolepticYear
The proleptic year. |
private static final long | serialVersionUID
Hides java. |
Access | Constructor and Description |
---|---|
private | HijrahDate(HijrahChronology
The chronology to create the date with chrono, int the proleptic year prolepticYear, int the month of year monthOfYear, int the day of month dayOfMonth)Constructs an |
private | HijrahDate(HijrahChronology chrono, long
the epochDay epochDay)Constructs an instance with the Epoch Day. |
Modifier and Type | Method and Description |
---|---|
public final ChronoLocalDateTime | atTime(LocalTime
the local time to use, not null localTime)Overrides default java. Combines this date with a time to create a |
public boolean | Returns: true if this is equal to the other date and the Chronologies are equalthe object to check, null returns false obj)Overrides java. Implements java. Compares this date to another date, including the chronology. |
public static HijrahDate | Returns: the date in Hijrah calendar system, not nullthe temporal object to convert, not null temporal)Hides java. Obtains a |
public HijrahChronology | Returns: the Hijrah chronology, not nullImplements java. Gets the chronology of this date, which is the Hijrah calendar system. |
private int | |
private int | |
public HijrahEra | Returns: the era applicable at this date, not nullOverrides default java. Gets the era applicable at this date. |
private int | |
public long | getLong(TemporalField
the field to get, not null field)Implements java. Gets the value of the specified field as a |
private long | |
public int | Returns: a suitable hash code based only on the Chronology and the dateOverrides java. Implements java. A hash code for this date. |
public boolean | Returns: true if this date is in a leap yearOverrides default java. Checks if the year is a leap year, according to the Hijrah calendar system rules. |
public int | Returns: the length of the month in daysImplements java. Returns the length of the month represented by this date. |
public int | Returns: the length of the year in daysOverrides default java. Returns the length of the year represented by this date. |
public HijrahDate | minus(TemporalAmount
the amount to subtract, not null amount)Overrides java. Overrides default java. Returns an object of the same type as this object with an amount subtracted. |
public HijrahDate | minus(long
the amount of the specified unit to subtract, may be negative amountToSubtract, TemporalUnit the unit of the amount to subtract, not null unit)Overrides java. Overrides default java. Returns an object of the same type as this object with the specified period subtracted. |
pack-priv HijrahDate | minusDays(long
the days to subtract, may be negative daysToSubtract)Overrides java. Returns a copy of this date with the specified number of days subtracted. |
pack-priv HijrahDate | minusMonths(long
the months to subtract, may be negative monthsToSubtract)Overrides java. Returns a copy of this date with the specified number of months subtracted. |
pack-priv HijrahDate | minusWeeks(long
the weeks to subtract, may be negative weeksToSubtract)Overrides java. Returns a copy of this date with the specified number of weeks subtracted. |
pack-priv HijrahDate | minusYears(long
the years to subtract, may be negative yearsToSubtract)Overrides java. Returns a copy of this date with the specified number of years subtracted. |
public static HijrahDate | Returns: the current date using the system clock and default time-zone, not nullObtains the current |
public static HijrahDate | |
public static HijrahDate | |
pack-priv static HijrahDate | Returns: the Hijrah date, never nullthe proleptic year to represent in the Hijrah calendar prolepticYear, int the month-of-year to represent, from 1 to 12 monthOfYear, int the day-of-month to represent, from 1 to 30 dayOfMonth)Obtains an instance of |
public static HijrahDate | Returns: the date in Hijrah calendar system, not nullthe Hijrah proleptic-year prolepticYear, int the Hijrah month-of-year, from 1 to 12 month, int the Hijrah day-of-month, from 1 to 30 dayOfMonth)Obtains a |
pack-priv static HijrahDate | Returns: a HijrahDate for the epoch day; non-nullThe Hijrah chronology chrono, long the epoch day epochDay)Returns a HijrahDate for the chronology and epochDay. |
public HijrahDate | plus(TemporalAmount
the amount to add, not null amount)Overrides java. Overrides default java. Returns an object of the same type as this object with an amount added. |
public HijrahDate | plus(long
the amount of the specified unit to add, may be negative amountToAdd, TemporalUnit the unit of the amount to add, not null unit)Overrides java. Overrides default java. Implements java. Returns an object of the same type as this object with the specified period added. |
pack-priv HijrahDate | plusDays(long
the days to add, may be negative days)Implements abstract java. Returns a copy of this date with the specified number of days added. |
pack-priv HijrahDate | plusMonths(long
the months to add, may be negative monthsToAdd)Implements abstract java. Returns a copy of this date with the specified number of months added. |
pack-priv HijrahDate | plusWeeks(long
the weeks to add, may be negative weeksToAdd)Overrides java. Returns a copy of this date with the specified number of weeks added. |
pack-priv HijrahDate | plusYears(long
the years to add, may be negative years)Implements abstract java. Returns a copy of this date with the specified number of years added. |
public ValueRange | range(TemporalField
the field to query the range for, not null field)Overrides default java. Gets the range of valid values for the specified field. |
pack-priv static HijrahDate | |
private void | |
private HijrahDate | |
public long | toEpochDay()
Overrides default java. Converts this date to the Epoch Day. |
public ChronoPeriod | until(ChronoLocalDate
the end date, exclusive, which may be in any chronology, not null endDate)Implements java. Calculates the period between this date and another date as a |
public HijrahDate | with(TemporalField
the field to set in the result, not null field, long the new value of the field in the result newValue)Overrides java. Overrides default java. Implements java. Returns an object of the same type as this object with the specified field altered. |
public HijrahDate | with(TemporalAdjuster
the adjuster to use, not null adjuster)Overrides java. Overrides default java. Returns an adjusted object of the same type as this object with the adjustment made. |
public HijrahDate | Returns: a HijrahDate with the requested HijrahChronology, non-nullthe new HijrahChonology, non-null chronology)Returns a |
pack-priv void | |
private Object | Returns: the instance ofSer , not nullWrites the object using a dedicated serialized form. |
chrono | back to summary |
---|---|
private final transient HijrahChronology chrono The Chronology of this HijrahDate. |
dayOfMonth | back to summary |
---|---|
private final transient int dayOfMonth The day-of-month. |
monthOfYear | back to summary |
---|---|
private final transient int monthOfYear The month-of-year. |
prolepticYear | back to summary |
---|---|
private final transient int prolepticYear The proleptic year. |
serialVersionUID | back to summary |
---|---|
private static final long serialVersionUID Hides java. Serialization version. |
HijrahDate | back to summary |
---|---|
private HijrahDate(HijrahChronology chrono, int prolepticYear, int monthOfYear, int dayOfMonth) Constructs an
|
HijrahDate | back to summary |
---|---|
private HijrahDate(HijrahChronology chrono, long epochDay) Constructs an instance with the Epoch Day.
|
atTime | back to summary |
---|---|
public final ChronoLocalDateTime Overrides default java. Doc from java. Combines this date with a time to create a
This returns a
|
equals | back to summary |
---|---|
public boolean equals(Object obj) Overrides java. Implements java. Compares this date to another date, including the chronology.
Compares this
Only objects of type |
from | back to summary |
---|---|
public static HijrahDate from(TemporalAccessor temporal) Hides java. Obtains a
This obtains a date in the Hijrah calendar system based on the specified temporal.
A
The conversion typically uses the
This method matches the signature of the functional interface
|
getChronology | back to summary |
---|---|
public HijrahChronology getChronology() Implements java. Gets the chronology of this date, which is the Hijrah calendar system.
The
|
getDayOfWeek | back to summary |
---|---|
private int getDayOfWeek() Gets the day-of-week value.
|
getDayOfYear | back to summary |
---|---|
private int getDayOfYear() Gets the day-of-year field.
This method returns the primitive
|
getEra | back to summary |
---|---|
public HijrahEra getEra() Overrides default java. Gets the era applicable at this date.
The Hijrah calendar system has one era, 'AH',
defined by |
getEraValue | back to summary |
---|---|
private int getEraValue() Gets the Era of this date.
|
getLong | back to summary |
---|---|
public long getLong(TemporalField field) Implements java. Doc from java. Gets the value of the specified field as a This queries the date-time for the value of the specified field. The returned value may be outside the valid range of values for the field. If the date-time cannot return the value, because the field is unsupported or for some other reason, an exception will be thrown.
|
getProlepticMonth | back to summary |
---|---|
private long getProlepticMonth() |
hashCode | back to summary |
---|---|
public int hashCode() Overrides java. Implements java. A hash code for this date.
|
isLeapYear | back to summary |
---|---|
public boolean isLeapYear() Overrides default java. Checks if the year is a leap year, according to the Hijrah calendar system rules.
|
lengthOfMonth | back to summary |
---|---|
public int lengthOfMonth() Implements java. Returns the length of the month represented by this date. This returns the length of the month in days. Month lengths in the Hijrah calendar system vary between 29 and 30 days.
|
lengthOfYear | back to summary |
---|---|
public int lengthOfYear() Overrides default java. Returns the length of the year represented by this date. This returns the length of the year in days. A Hijrah calendar system year is typically shorter than that of the ISO calendar system.
|
minus | back to summary |
---|---|
public HijrahDate minus(TemporalAmount amount) Overrides java. Overrides default java. Doc from java. Returns an object of the same type as this object with an amount subtracted.
This adjusts this temporal, subtracting according to the rules of the specified amount.
The amount is typically a Some example code indicating how and why this method is used: date = date.minus(period); // subtract a Period instance date = date.minus(duration); // subtract a Duration instance date = date.minus(workingDays(6)); // example user-written workingDays method
Note that calling
|
minus | back to summary |
---|---|
public HijrahDate minus(long amountToSubtract, TemporalUnit unit) Overrides java. Overrides default java. Doc from java. Returns an object of the same type as this object with the specified period subtracted.
This method returns a new object based on this one with the specified period subtracted.
For example, on a In some cases, changing a field is not fully defined. For example, if the target object is a date representing the 31st March, then subtracting one month would be unclear. In cases like this, the field is responsible for resolving the result. Typically it will choose the previous valid date, which would be the last valid day of February in this example.
|
minusDays | back to summary |
---|---|
pack-priv HijrahDate minusDays(long daysToSubtract) Overrides java. Doc from java. Returns a copy of this date with the specified number of days subtracted. This subtracts the specified period in days to the date.
The default implementation uses This instance is immutable and unaffected by this method call.
|
minusMonths | back to summary |
---|---|
pack-priv HijrahDate minusMonths(long monthsToSubtract) Overrides java. Doc from java. Returns a copy of this date with the specified number of months subtracted. This subtracts the specified period in months to the date. In some cases, subtracting months can cause the resulting date to become invalid. If this occurs, then other fields, typically the day-of-month, will be adjusted to ensure that the result is valid. Typically this will select the last valid day of the month.
The default implementation uses This instance is immutable and unaffected by this method call.
|
minusWeeks | back to summary |
---|---|
pack-priv HijrahDate minusWeeks(long weeksToSubtract) Overrides java. Doc from java. Returns a copy of this date with the specified number of weeks subtracted. This subtracts the specified period in weeks to the date. In some cases, subtracting weeks can cause the resulting date to become invalid. If this occurs, then other fields will be adjusted to ensure that the result is valid.
The default implementation uses This instance is immutable and unaffected by this method call.
|
minusYears | back to summary |
---|---|
pack-priv HijrahDate minusYears(long yearsToSubtract) Overrides java. Doc from java. Returns a copy of this date with the specified number of years subtracted. This subtracts the specified period in years to the date. In some cases, subtracting years can cause the resulting date to become invalid. If this occurs, then other fields, typically the day-of-month, will be adjusted to ensure that the result is valid. Typically this will select the last valid day of the month.
The default implementation uses This instance is immutable and unaffected by this method call.
|
now | back to summary |
---|---|
public static HijrahDate now() Obtains the current
This will query the Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
|
now | back to summary |
---|---|
public static HijrahDate now(ZoneId zone) Obtains the current
This will query the Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
|
now | back to summary |
---|---|
public static HijrahDate now(Clock clock) Obtains the current 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.
|
of | back to summary |
---|---|
pack-priv static HijrahDate of(HijrahChronology chrono, int prolepticYear, int monthOfYear, int dayOfMonth) Obtains an instance of
|
of | back to summary |
---|---|
public static HijrahDate of(int prolepticYear, int month, int dayOfMonth) Obtains a
This returns a
|
ofEpochDay | back to summary |
---|---|
pack-priv static HijrahDate ofEpochDay(HijrahChronology chrono, long epochDay) Returns a HijrahDate for the chronology and epochDay.
|
plus | back to summary |
---|---|
public HijrahDate plus(TemporalAmount amount) Overrides java. Overrides default java. Doc from java. Returns an object of the same type as this object with an amount added.
This adjusts this temporal, adding according to the rules of the specified amount.
The amount is typically a Some example code indicating how and why this method is used: date = date.plus(period); // add a Period instance date = date.plus(duration); // add a Duration instance date = date.plus(workingDays(6)); // example user-written workingDays method
Note that calling
|
plus | back to summary |
---|---|
public HijrahDate plus(long amountToAdd, TemporalUnit unit) Overrides java. Overrides default java. Implements java. Doc from java. Returns an object of the same type as this object with the specified period added.
This method returns a new object based on this one with the specified period added.
For example, on a In some cases, changing a field is not fully defined. For example, if the target object is a date representing the 31st January, then adding one month would be unclear. In cases like this, the field is responsible for resolving the result. Typically it will choose the previous valid date, which would be the last valid day of February in this example.
|
plusDays | back to summary |
---|---|
pack-priv HijrahDate plusDays(long days) Implements abstract java. Doc from java. Returns a copy of this date with the specified number of days added. This adds the specified period in days to the date. This instance is immutable and unaffected by this method call.
|
plusMonths | back to summary |
---|---|
pack-priv HijrahDate plusMonths(long monthsToAdd) Implements abstract java. Doc from java. Returns a copy of this date with the specified number of months added. This adds the specified period in months to the date. In some cases, adding months can cause the resulting date to become invalid. If this occurs, then other fields, typically the day-of-month, will be adjusted to ensure that the result is valid. Typically this will select the last valid day of the month. This instance is immutable and unaffected by this method call.
|
plusWeeks | back to summary |
---|---|
pack-priv HijrahDate plusWeeks(long weeksToAdd) Overrides java. Doc from java. Returns a copy of this date with the specified number of weeks added. This adds the specified period in weeks to the date. In some cases, adding weeks can cause the resulting date to become invalid. If this occurs, then other fields will be adjusted to ensure that the result is valid.
The default implementation uses This instance is immutable and unaffected by this method call.
|
plusYears | back to summary |
---|---|
pack-priv HijrahDate plusYears(long years) Implements abstract java. Doc from java. Returns a copy of this date with the specified number of years added. This adds the specified period in years to the date. In some cases, adding years can cause the resulting date to become invalid. If this occurs, then other fields, typically the day-of-month, will be adjusted to ensure that the result is valid. Typically this will select the last valid day of the month. This instance is immutable and unaffected by this method call.
|
range | back to summary |
---|---|
public ValueRange range(TemporalField field) Overrides default java. Doc from java. Gets the range of valid values for the specified field.
All fields can be expressed as a Note that the result only describes the minimum and maximum valid values and it is important not to read too much into them. For example, there could be values within the range that are invalid for the field.
|
readExternal | back to summary |
---|---|
pack-priv static HijrahDate readExternal(ObjectInput in) throws IOException, ClassNotFoundException |
readObject | back to summary |
---|---|
private void readObject(ObjectInputStream s) throws InvalidObjectException Defend against malicious streams.
|
resolvePreviousValid | back to summary |
---|---|
private HijrahDate resolvePreviousValid(int prolepticYear, int month, int day) |
toEpochDay | back to summary |
---|---|
public long toEpochDay() Overrides default java. Doc from java. Converts this date to the Epoch Day.
The
This default implementation queries the
|
until | back to summary |
---|---|
public ChronoPeriod until(ChronoLocalDate endDate) Implements java. Doc from java. Calculates the period between this date and another date as a
This calculates the period between two dates. All supplied chronologies
calculate the period using years, months and days, however the
The start and end points are The calculation is performed using the chronology of this date. If necessary, the input date will be converted to match. This instance is immutable and unaffected by this method call.
|
with | back to summary |
---|---|
public HijrahDate with(TemporalField field, long newValue) Overrides java. Overrides default java. Implements java. Doc from java. Returns an object of the same type as this object with the specified field altered.
This returns a new object based on this one with the value for the specified field changed.
For example, on a In some cases, changing a field is not fully defined. For example, if the target object is a date representing the 31st January, then changing the month to February would be unclear. In cases like this, the field is responsible for resolving the result. Typically it will choose the previous valid date, which would be the last valid day of February in this example.
|
with | back to summary |
---|---|
public HijrahDate with(TemporalAdjuster adjuster) Overrides java. Overrides default java. Doc from java. Returns an adjusted object of the same type as this object with the adjustment made.
This adjusts this date-time according to the rules of the specified adjuster.
A simple adjuster might simply set the one of the fields, such as the year field.
A more complex adjuster might set the date to the last day of the month.
A selection of common adjustments is provided in
Some example code indicating how and why this method is used: date = date.with(Month.JULY); // most key classes implement TemporalAdjuster date = date.with(lastDayOfMonth()); // static import from Adjusters date = date.with(next(WEDNESDAY)); // static import from Adjusters and DayOfWeek
|
withVariant | back to summary |
---|---|
public HijrahDate withVariant(HijrahChronology chronology) Returns a The year, month, and day are checked against the new requested HijrahChronology. If the chronology has a shorter month length for the month, the day is reduced to be the last day of the month.
|
writeExternal | back to summary |
---|---|
pack-priv void writeExternal(ObjectOutput out) throws IOException |
writeReplace | back to summary |
---|---|
private Object writeReplace() Writes the object using a dedicated serialized form. |