public static enum HijriCalendar.Unit extends Enum<HijriCalendar.Unit> implements ChronoUnit
Defines some calendar units for the Hijri calendar.
| Modifier and Type | Method and Description |
|---|---|
int |
between(HijriCalendar start,
HijriCalendar end,
String variant)
Calculates the difference between given islamic dates in this unit.
|
int |
between(HijriCalendar start,
HijriCalendar end,
VariantSource variantSource)
Equivalent to
between(start, end, variantSource.getVariant()). |
double |
getLength()
Defines the typical length of this time unit in seconds without
taking into account anomalies like timezone effects or leap seconds.
|
boolean |
isCalendrical()
Queries if this time unit is calendrical respective is at least
as long as a calendar day.
|
static HijriCalendar.Unit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HijriCalendar.Unit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HijriCalendar.Unit YEARS
public static final HijriCalendar.Unit MONTHS
public static final HijriCalendar.Unit WEEKS
public static final HijriCalendar.Unit DAYS
public static HijriCalendar.Unit[] values()
for (HijriCalendar.Unit c : HijriCalendar.Unit.values()) System.out.println(c);
public static HijriCalendar.Unit valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic double getLength()
ChronoUnitDefines the typical length of this time unit in seconds without taking into account anomalies like timezone effects or leap seconds.
Important note: This method can only yield an estimated value and is not intended to assist in calculations of durations, but only in sorting of units.
getLength in interface ChronoUnitpublic boolean isCalendrical()
ChronoUnitQueries if this time unit is calendrical respective is at least as long as a calendar day.
Implementation note: The method must be consistent with the typical
length of the unit. The expression
Double.compare(unit.getLength(), 86400.0) >= 0 is
equivalent to unit.isCalendrical().
isCalendrical in interface ChronoUnittrue if at least as long as a day else falsepublic int between(HijriCalendar start, HijriCalendar end, String variant)
Calculates the difference between given islamic dates in this unit.
start - start date (inclusive)end - end date (exclusive)variant - variant reference to which both dates will be converted firstpublic int between(HijriCalendar start, HijriCalendar end, VariantSource variantSource)
Equivalent to between(start, end, variantSource.getVariant()).
start - start date (inclusive)end - end date (exclusive)variantSource - variant reference to which both dates will be converted firstCopyright © 2014–2021. All rights reserved.