java.io.Serializable
, java.lang.Comparable<java.time.chrono.ChronoLocalDate>
, java.time.chrono.ChronoLocalDate
, java.time.temporal.Temporal
, java.time.temporal.TemporalAccessor
, java.time.temporal.TemporalAdjuster
public final class DiscordianDate
extends java.lang.Object
implements java.time.chrono.ChronoLocalDate, java.io.Serializable
This date operates using the Discordian calendar.
This calendar system is used by some adherents to Discordianism.
The Discordian differs from the Gregorian in terms of the length of the week and month, and uses an offset year.
Dates are aligned such that 0001-01-01 (Discordian)
is -1165-01-01 (ISO)
.
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 | Description |
---|---|---|
java.time.chrono.ChronoLocalDateTime<DiscordianDate> |
atTime(java.time.LocalTime localTime) |
|
boolean |
equals(java.lang.Object obj) |
Compares this date to another date, including the chronology.
|
static DiscordianDate |
from(java.time.temporal.TemporalAccessor temporal) |
Obtains a
DiscordianDate from a temporal object. |
DiscordianChronology |
getChronology() |
Gets the chronology of this date, which is the Discordian calendar system.
|
DiscordianEra |
getEra() |
Gets the era applicable at this date.
|
long |
getLong(java.time.temporal.TemporalField field) |
|
int |
hashCode() |
A hash code for this date.
|
int |
lengthOfMonth() |
|
DiscordianDate |
minus(long amountToSubtract,
java.time.temporal.TemporalUnit unit) |
|
DiscordianDate |
minus(java.time.temporal.TemporalAmount amount) |
|
static DiscordianDate |
now() |
Obtains the current
DiscordianDate from the system clock in the default time-zone. |
static DiscordianDate |
now(java.time.Clock clock) |
Obtains the current
DiscordianDate from the specified clock. |
static DiscordianDate |
now(java.time.ZoneId zone) |
Obtains the current
DiscordianDate from the system clock in the specified time-zone. |
static DiscordianDate |
of(int prolepticYear,
int month,
int dayOfMonth) |
Obtains a
DiscordianDate representing a date in the Discordian calendar
system from the proleptic-year, month-of-year and day-of-month fields. |
DiscordianDate |
plus(long amountToAdd,
java.time.temporal.TemporalUnit unit) |
|
DiscordianDate |
plus(java.time.temporal.TemporalAmount amount) |
|
java.time.temporal.ValueRange |
range(java.time.temporal.TemporalField field) |
|
long |
toEpochDay() |
|
java.lang.String |
toString() |
|
java.time.chrono.ChronoPeriod |
until(java.time.chrono.ChronoLocalDate endDateExclusive) |
|
long |
until(java.time.temporal.Temporal endExclusive,
java.time.temporal.TemporalUnit unit) |
|
DiscordianDate |
with(java.time.temporal.TemporalAdjuster adjuster) |
|
DiscordianDate |
with(java.time.temporal.TemporalField field,
long newValue) |
adjustInto, compareTo, equals, format, hashCode, isAfter, isBefore, isEqual, isLeapYear, isSupported, isSupported, lengthOfYear, query
public static DiscordianDate now()
DiscordianDate
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 DiscordianDate now(java.time.ZoneId zone)
DiscordianDate
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 DiscordianDate now(java.time.Clock clock)
DiscordianDate
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 nulljava.time.DateTimeException
- if the current date cannot be obtainedpublic static DiscordianDate of(int prolepticYear, int month, int dayOfMonth)
DiscordianDate
representing a date in the Discordian calendar
system from the proleptic-year, month-of-year and day-of-month fields.
This returns a DiscordianDate
with the specified fields.
The day must be valid for the year and month, otherwise an exception will be thrown.
St. Tib's Day is indicated by specifying 0 for both month and day-of-month.
prolepticYear
- the Discordian proleptic-yearmonth
- the Discordian month-of-year, from 1 to 5dayOfMonth
- the Discordian day-of-month, from 1 to 73java.time.DateTimeException
- if the value of any field is out of range,
or if the day-of-month is invalid for the month-yearpublic static DiscordianDate from(java.time.temporal.TemporalAccessor temporal)
DiscordianDate
from a temporal object.
This obtains a date in the Discordian 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 DiscordianDate
.
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, DiscordianDate::from
.
temporal
- the temporal object to convert, not nulljava.time.DateTimeException
- if unable to convert to a DiscordianDate
public java.time.temporal.ValueRange range(java.time.temporal.TemporalField field)
range
in interface java.time.temporal.TemporalAccessor
public long getLong(java.time.temporal.TemporalField field)
getLong
in interface java.time.temporal.TemporalAccessor
public DiscordianChronology getChronology()
The Chronology
represents the calendar system in use.
The era and other fields in ChronoField
are defined by the chronology.
getChronology
in interface java.time.chrono.ChronoLocalDate
public DiscordianEra getEra()
The Discordian calendar system has one era, 'YOLD',
defined by DiscordianEra
.
getEra
in interface java.time.chrono.ChronoLocalDate
public int lengthOfMonth()
lengthOfMonth
in interface java.time.chrono.ChronoLocalDate
public DiscordianDate with(java.time.temporal.TemporalAdjuster adjuster)
with
in interface java.time.chrono.ChronoLocalDate
with
in interface java.time.temporal.Temporal
public DiscordianDate with(java.time.temporal.TemporalField field, long newValue)
with
in interface java.time.chrono.ChronoLocalDate
with
in interface java.time.temporal.Temporal
public DiscordianDate plus(java.time.temporal.TemporalAmount amount)
plus
in interface java.time.chrono.ChronoLocalDate
plus
in interface java.time.temporal.Temporal
public DiscordianDate plus(long amountToAdd, java.time.temporal.TemporalUnit unit)
plus
in interface java.time.chrono.ChronoLocalDate
plus
in interface java.time.temporal.Temporal
public DiscordianDate minus(java.time.temporal.TemporalAmount amount)
minus
in interface java.time.chrono.ChronoLocalDate
minus
in interface java.time.temporal.Temporal
public DiscordianDate minus(long amountToSubtract, java.time.temporal.TemporalUnit unit)
minus
in interface java.time.chrono.ChronoLocalDate
minus
in interface java.time.temporal.Temporal
public java.time.chrono.ChronoLocalDateTime<DiscordianDate> atTime(java.time.LocalTime localTime)
atTime
in interface java.time.chrono.ChronoLocalDate
public long until(java.time.temporal.Temporal endExclusive, java.time.temporal.TemporalUnit unit)
until
in interface java.time.chrono.ChronoLocalDate
until
in interface java.time.temporal.Temporal
public java.time.chrono.ChronoPeriod until(java.time.chrono.ChronoLocalDate endDateExclusive)
until
in interface java.time.chrono.ChronoLocalDate
public long toEpochDay()
toEpochDay
in interface java.time.chrono.ChronoLocalDate
public java.lang.String toString()
toString
in interface java.time.chrono.ChronoLocalDate
public boolean equals(java.lang.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 java.time.chrono.ChronoLocalDate
equals
in class java.lang.Object
obj
- the object to check, null returns falsepublic int hashCode()
hashCode
in interface java.time.chrono.ChronoLocalDate
hashCode
in class java.lang.Object
Copyright © 2010–2018 ThreeTen.org. All rights reserved.