public final class Symmetry010Date extends Object implements ChronoLocalDate, Serializable
This date operates using the Symmetry010 calendar.
This calendar system is a proposed reform calendar system, and is not in common use.
The Symmetry010 differs from the Gregorian in terms of month length, and the leap year rule.
Dates are aligned such that 0001/01/01 (Sym010) is 0001-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 Symmetry010 calendar, as proposed by Dr. Irv Bromberg. The year shares the 12 months with the Gregorian calendar. The months February, May, August, November span 31 days, all other months consist of 30 days. In leap years, December is extended with a full week, the so-called "leap week". Thus December in a leap year has 37. 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 Symmetry010 or on the calendar's home page.
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 ==.
| Modifier and Type | Method and Description |
|---|---|
ChronoLocalDateTime<Symmetry010Date> |
atTime(LocalTime localTime) |
boolean |
equals(Object obj)
Compares this date to another date, including the chronology.
|
static Symmetry010Date |
from(TemporalAccessor temporal)
Obtains a
Symmetry010Date from a temporal object. |
Symmetry010Chronology |
getChronology()
Gets the chronology of this date, which is the Symmetry010 calendar system.
|
IsoEra |
getEra()
Gets the era applicable at this date.
|
long |
getLong(TemporalField field) |
int |
hashCode()
A hash code for this date.
|
boolean |
isLeapWeek()
Checks if the date is within the leap week.
|
int |
lengthOfMonth()
Returns the length of the month represented by this date.
|
int |
lengthOfYear()
Returns the length of the year represented by this date.
|
Symmetry010Date |
minus(long amountToSubtract,
TemporalUnit unit) |
Symmetry010Date |
minus(TemporalAmount amount) |
static Symmetry010Date |
now()
Obtains the current
Symmetry010Date from the system clock in the default time-zone. |
static Symmetry010Date |
now(Clock clock)
Obtains the current
Symmetry010Date from the specified clock. |
static Symmetry010Date |
now(ZoneId zone)
Obtains the current
Symmetry010Date from the system clock in the specified time-zone. |
static Symmetry010Date |
of(int prolepticYear,
int month,
int dayOfMonth)
Obtains a
Symmetry010Date representing a date in the Symmetry010 calendar
system from the proleptic-year, month-of-year and day-of-month fields. |
Symmetry010Date |
plus(long amountToAdd,
TemporalUnit unit) |
Symmetry010Date |
plus(TemporalAmount amount) |
ValueRange |
range(TemporalField field) |
long |
toEpochDay() |
String |
toString()
Display the date in human-readable format.
|
ChronoPeriod |
until(ChronoLocalDate endDateExclusive) |
long |
until(Temporal endExclusive,
TemporalUnit unit) |
Symmetry010Date |
with(TemporalAdjuster adjuster) |
Symmetry010Date |
with(TemporalField field,
long newValue) |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitadjustInto, compareTo, equals, format, hashCode, isAfter, isBefore, isEqual, isLeapYear, isSupported, isSupported, query, timeLineOrderget, getLongpublic static Symmetry010Date now()
Symmetry010Date from the system clock in the default time-zone.
This will query the system clock in 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.
public static Symmetry010Date now(ZoneId zone)
Symmetry010Date from the system clock in the specified time-zone.
This will query the system clock to 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.
zone - the zone ID to use, not nullpublic static Symmetry010Date now(Clock clock)
Symmetry010Date from 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.
clock - the clock to use, not nullDateTimeException - if the current date cannot be obtainedpublic static Symmetry010Date of(int prolepticYear, int month, int dayOfMonth)
Symmetry010Date representing a date in the Symmetry010 calendar
system from the proleptic-year, month-of-year and day-of-month fields.
This returns a Symmetry010Date with the specified fields.
The day must be valid for the year and month, otherwise an exception will be thrown.
prolepticYear - the Symmetry010 proleptic-yearmonth - the Symmetry010 month-of-year, from 1 to 12dayOfMonth - the Symmetry010 day-of-month, from 1 to 30, or 1 to 31 in February, May, August, November,
or 1 to 37 in December in a Leap YearDateTimeException - if the value of any field is out of range,
or if the day-of-month is invalid for the month-yearpublic static Symmetry010Date from(TemporalAccessor temporal)
Symmetry010Date from a temporal object.
This obtains a date in the Symmetry010 calendar system based on the specified temporal.
A TemporalAccessor represents an arbitrary set of date and time information,
which this factory converts to an instance of Symmetry010Date.
The conversion typically uses the EPOCH_DAY
field, which is standardized across calendar systems.
This method matches the signature of the functional interface TemporalQuery
allowing it to be used as a query via method reference, Symmetry010Date::from.
from in interface ChronoLocalDatetemporal - the temporal object to convert, not nullDateTimeException - if unable to convert to a Symmetry010Datepublic boolean isLeapWeek()
public ValueRange range(TemporalField field)
range in interface TemporalAccessorpublic Symmetry010Chronology getChronology()
The Chronology represents the calendar system in use.
The era and other fields in ChronoField are defined by the chronology.
getChronology in interface ChronoLocalDatepublic IsoEra getEra()
The Symmetry454 calendar system uses IsoEra.
getEra in interface ChronoLocalDatepublic int lengthOfMonth()
This returns the length of the month in days. Month lengths do not match those of the ISO calendar system.
Most months have 30 days, except for February, May, August, November each have 31 days. December in a leap year has 37 days.
lengthOfMonth in interface ChronoLocalDatepublic int lengthOfYear()
This returns the length of the year in days. Year lengths do NOT match those of the ISO calendar system.
lengthOfYear in interface ChronoLocalDatepublic Symmetry010Date with(TemporalAdjuster adjuster)
with in interface ChronoLocalDatewith in interface Temporalpublic Symmetry010Date with(TemporalField field, long newValue)
with in interface ChronoLocalDatewith in interface Temporalpublic Symmetry010Date plus(TemporalAmount amount)
plus in interface ChronoLocalDateplus in interface Temporalpublic Symmetry010Date plus(long amountToAdd, TemporalUnit unit)
plus in interface ChronoLocalDateplus in interface Temporalpublic Symmetry010Date minus(TemporalAmount amount)
minus in interface ChronoLocalDateminus in interface Temporalpublic Symmetry010Date minus(long amountToSubtract, TemporalUnit unit)
minus in interface ChronoLocalDateminus in interface Temporalpublic ChronoLocalDateTime<Symmetry010Date> atTime(LocalTime localTime)
atTime in interface ChronoLocalDatepublic long until(Temporal endExclusive, TemporalUnit unit)
until in interface ChronoLocalDateuntil in interface Temporalpublic ChronoPeriod until(ChronoLocalDate endDateExclusive)
until in interface ChronoLocalDatepublic long toEpochDay()
toEpochDay in interface ChronoLocalDatepublic String toString()
toString in interface ChronoLocalDatepublic long getLong(TemporalField field)
getLong in interface TemporalAccessorpublic boolean equals(Object obj)
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 TemporalAccessor instances, including dates
in two different chronologies, use ChronoField.EPOCH_DAY as a comparator.
equals in interface ChronoLocalDateequals in class Objectobj - the object to check, null returns falsepublic int hashCode()
hashCode in interface ChronoLocalDatehashCode in class ObjectCopyright © 2010–2016 ThreeTen.org. All rights reserved.