- java.lang.Object
-
- org.threeten.extra.chrono.Symmetry454Date
-
- All Implemented Interfaces:
Serializable,Comparable<ChronoLocalDate>,ChronoLocalDate,Temporal,TemporalAccessor,TemporalAdjuster
public final class Symmetry454Date extends Object implements ChronoLocalDate, Serializable
A date in the Symmetry454 calendar system.This date operates using the Symmetry454 calendar. This calendar system is a proposed reform calendar system, and is not in common use. The Symmetry454 calendar differs from the Gregorian in terms of month length, and the leap year rule. Dates are aligned such that
0001/01/01 (Sym454)is0001-01-01 (ISO). The alignment of January 1st happens 40 times within a 293 years cycle, skipping 5, 6, 11 or 12 years in between: 1, 7, 18, 24, 29, 35, 46, 52, 57, 63, 74, 80, 85, 91, 103, 114, 120, 125, 131, 142, 148, 153, 159, 170, 176, 181, 187, 198, 210, 216, 221, 227, 238, 244, 249, 255, 266, 272, 277, 283.The implementation is a pure Symmetry454 calendar, as proposed by Dr. Irv Bromberg. The year shares the 12 months with the Gregorian calendar. The months February, May, August, November span 35 days, all other months consist of 28 days. In leap years, December is extended with a full week, the so-called "leap week". Since each month is made of full weeks, the calendar is perennial, with every date fixed always on the same weekday. Each month starts on a Monday and ends on a Sunday; so does each year. The 13th day of a month is always a Saturday.
More information is available on Wikipedia at Symmetry454 or on the calendar's home page.
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 ChronoLocalDateTime<Symmetry454Date>atTime(LocalTime localTime)booleanequals(Object obj)Compares this date to another date, including the chronology.static Symmetry454Datefrom(TemporalAccessor temporal)Obtains aSymmetry454Datefrom a temporal object.Symmetry454ChronologygetChronology()Gets the chronology of this date, which is the Symmetry454 calendar system.IsoEragetEra()Gets the era applicable at this date.longgetLong(TemporalField field)inthashCode()A hash code for this date.booleanisLeapWeek()Checks if the date is within the leap week.intlengthOfMonth()Returns the length of the month represented by this date.intlengthOfYear()Returns the length of the year represented by this date.Symmetry454Dateminus(long amountToSubtract, TemporalUnit unit)Symmetry454Dateminus(TemporalAmount amount)static Symmetry454Datenow()Obtains the currentSymmetry454Datefrom the system clock in the default time-zone.static Symmetry454Datenow(Clock clock)Obtains the currentSymmetry454Datefrom the specified clock.static Symmetry454Datenow(ZoneId zone)Obtains the currentSymmetry454Datefrom the system clock in the specified time-zone.static Symmetry454Dateof(int prolepticYear, int month, int dayOfMonth)Obtains aSymmetry454Daterepresenting a date in the Symmetry454 calendar system from the proleptic-year, month-of-year and day-of-month fields.Symmetry454Dateplus(long amountToAdd, TemporalUnit unit)Symmetry454Dateplus(TemporalAmount amount)ValueRangerange(TemporalField field)longtoEpochDay()StringtoString()Display the date in human-readable format.ChronoPerioduntil(ChronoLocalDate endDateExclusive)longuntil(Temporal endExclusive, TemporalUnit unit)Symmetry454Datewith(TemporalAdjuster adjuster)Symmetry454Datewith(TemporalField field, long newValue)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.time.chrono.ChronoLocalDate
adjustInto, compareTo, equals, format, hashCode, isAfter, isBefore, isEqual, isLeapYear, isSupported, isSupported, query
-
Methods inherited from interface java.time.temporal.TemporalAccessor
get, getLong
-
-
-
-
Method Detail
-
now
public static Symmetry454Date now()
Obtains the currentSymmetry454Datefrom 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 Symmetry454Date now(ZoneId zone)
Obtains the currentSymmetry454Datefrom 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 Symmetry454Date now(Clock clock)
Obtains the currentSymmetry454Datefrom 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
public static Symmetry454Date of(int prolepticYear, int month, int dayOfMonth)
Obtains aSymmetry454Daterepresenting a date in the Symmetry454 calendar system from the proleptic-year, month-of-year and day-of-month fields.This returns a
Symmetry454Datewith the specified fields. The day must be valid for the year and month, otherwise an exception will be thrown.- Parameters:
prolepticYear- the Symmetry454 proleptic-yearmonth- the Symmetry454 month-of-year, from 1 to 12dayOfMonth- the Symmetry454 day-of-month, from 1 to 28, or 1 to 35 in February, May, August, November and December in a Leap Year- Returns:
- the date in Symmetry454 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
public static Symmetry454Date from(TemporalAccessor temporal)
Obtains aSymmetry454Datefrom a temporal object.This obtains a date in the Symmetry454 calendar system based on the specified temporal. A
TemporalAccessorrepresents an arbitrary set of date and time information, which this factory converts to an instance ofSymmetry454Date.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,Symmetry454Date::from.- Parameters:
temporal- the temporal object to convert, not null- Returns:
- the date in the Symmetry454 calendar system, not null
- Throws:
DateTimeException- if unable to convert to aSymmetry454Date
-
isLeapWeek
public boolean isLeapWeek()
Checks if the date is within the leap week.- Returns:
- true if this date is in the leap week
-
range
public ValueRange range(TemporalField field)
- Specified by:
rangein interfaceTemporalAccessor
-
getChronology
public Symmetry454Chronology getChronology()
Gets the chronology of this date, which is the Symmetry454 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 Symmetry454 chronology, not null
-
getEra
public IsoEra getEra()
Gets the era applicable at this date.The Symmetry454 calendar system uses
IsoEra.- Specified by:
getErain interfaceChronoLocalDate- Returns:
- the era applicable at this date, not null
-
lengthOfMonth
public int lengthOfMonth()
Returns the length of the month represented by this date.This returns the length of the month in days. Month lengths do not match those of the ISO calendar system.
Most months have 28 days, except for February, May, August, November, and December in a leap year, each has 35 days.
- Specified by:
lengthOfMonthin interfaceChronoLocalDate- Returns:
- the length of the month in days
-
lengthOfYear
public int lengthOfYear()
Returns the length of the year represented by this date.This returns the length of the year in days. Year lengths do NOT match those of the ISO calendar system.
- Specified by:
lengthOfYearin interfaceChronoLocalDate- Returns:
- the length of the year in days: 364 or 371
-
with
public Symmetry454Date with(TemporalAdjuster adjuster)
- Specified by:
within interfaceChronoLocalDate- Specified by:
within interfaceTemporal
-
with
public Symmetry454Date with(TemporalField field, long newValue)
- Specified by:
within interfaceChronoLocalDate- Specified by:
within interfaceTemporal
-
plus
public Symmetry454Date plus(TemporalAmount amount)
- Specified by:
plusin interfaceChronoLocalDate- Specified by:
plusin interfaceTemporal
-
plus
public Symmetry454Date plus(long amountToAdd, TemporalUnit unit)
- Specified by:
plusin interfaceChronoLocalDate- Specified by:
plusin interfaceTemporal
-
minus
public Symmetry454Date minus(TemporalAmount amount)
- Specified by:
minusin interfaceChronoLocalDate- Specified by:
minusin interfaceTemporal
-
minus
public Symmetry454Date minus(long amountToSubtract, TemporalUnit unit)
- Specified by:
minusin interfaceChronoLocalDate- Specified by:
minusin interfaceTemporal
-
atTime
public ChronoLocalDateTime<Symmetry454Date> atTime(LocalTime localTime)
- Specified by:
atTimein interfaceChronoLocalDate
-
until
public long until(Temporal endExclusive, TemporalUnit unit)
- Specified by:
untilin interfaceChronoLocalDate- Specified by:
untilin interfaceTemporal
-
until
public ChronoPeriod until(ChronoLocalDate endDateExclusive)
- Specified by:
untilin interfaceChronoLocalDate
-
toEpochDay
public long toEpochDay()
- Specified by:
toEpochDayin interfaceChronoLocalDate
-
toString
public String toString()
Display the date in human-readable format.- Specified by:
toStringin interfaceChronoLocalDate- Returns:
- the string representation
-
getLong
public long getLong(TemporalField field)
- Specified by:
getLongin interfaceTemporalAccessor
-
equals
public boolean equals(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 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
-
-