public static enum FrenchRepublicanCalendar.Unit extends Enum<FrenchRepublicanCalendar.Unit> implements ChronoUnit
Defines come calendar units for the French revolutionary calendar.
| Enum Constant and Description |
|---|
DAYS
The universal day unit.
|
DECADES
Decades consist of ten days where complementary days will be ignored or skipped.
|
MONTHS
The month arithmetic handles the sansculottides as extension of last month Fructidor.
|
WEEKS
Weeks consist of seven days.
|
YEARS
Years are defined as equinox years and not as tropical years.
|
| Modifier and Type | Method and Description |
|---|---|
long |
between(FrenchRepublicanCalendar start,
FrenchRepublicanCalendar end)
Calculates the difference between given calendar dates in this unit.
|
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 FrenchRepublicanCalendar.Unit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrenchRepublicanCalendar.Unit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrenchRepublicanCalendar.Unit YEARS
Years are defined as equinox years and not as tropical years.
public static final FrenchRepublicanCalendar.Unit MONTHS
The month arithmetic handles the sansculottides as extension of last month Fructidor.
The resulting date is always within a republican month. Example:
FrenchRepublicanCalendar cal = FrenchRepublicanCalendar.of(1, Sansculottides.COMPLEMENTARY_DAY_3);
FrenchRepublicanCalendar next = cal.plus(1, FrenchRepublicanCalendar.Unit.MONTHS);
System.out.println(next); // French-Republic-II-01-30 (30th of Vendémiaire II)
public static final FrenchRepublicanCalendar.Unit DECADES
Decades consist of ten days where complementary days will be ignored or skipped.
public static final FrenchRepublicanCalendar.Unit WEEKS
Weeks consist of seven days.
public static final FrenchRepublicanCalendar.Unit DAYS
The universal day unit.
public static FrenchRepublicanCalendar.Unit[] values()
for (FrenchRepublicanCalendar.Unit c : FrenchRepublicanCalendar.Unit.values()) System.out.println(c);
public static FrenchRepublicanCalendar.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 long between(FrenchRepublicanCalendar start, FrenchRepublicanCalendar end)
Calculates the difference between given calendar dates in this unit.
start - start date (inclusive)end - end date (exclusive)Copyright © 2014–2021. All rights reserved.