|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.threeten.bp.chrono.Chronology
public abstract class Chronology
A calendar system, used to organize and identify dates.
The main date and time API is built on the ISO calendar system. This class operates behind the scenes to represent the general concept of a calendar system. For example, the Japanese, Minguo, Thai Buddhist and others.
Most other calendar systems also operate on the shared concepts of year, month and day,
linked to the cycles of the Earth around the Sun, and the Moon around the Earth.
These shared concepts are defined by ChronoField and are availalbe
for use by any Chronology implementation:
LocalDate isoDate = ... ChronoLocalDate<ThaiBuddhistChrono> minguoDate = ... int isoYear = isoDate.get(ChronoField.YEAR); int thaiYear = thaiDate.get(ChronoField.YEAR);As shown, although the date objects are in different calendar systems, represented by different
Chronology instances, both can be queried using the same constant on ChronoField.
For a full discussion of the implications of this, see ChronoLocalDate.
In general, the advice is to use the known ISO-based LocalDate, rather than
ChronoLocalDate.
While a Chronology object typically uses ChronoField and is based on
an era, year-of-era, month-of-year, day-of-month model of a date, this is not required.
A Chronology instance may represent a totally different kind of calendar system,
such as the Mayan.
In practical terms, the Chronology instance also acts as a factory.
The of(String) method allows an instance to be looked up by identifier,
while the ofLocale(Locale) method allows lookup by locale.
The Chronology instance provides a set of methods to create ChronoLocalDate instances.
The date classes are used to manipulate specific dates.
dateNow()
dateNow(clock)
dateNow(zone)
date(yearProleptic, month, day)
date(era, yearOfEra, month, day)
dateYearDay(yearProleptic, dayOfYear)
dateYearDay(era, yearOfEra, dayOfYear)
date(TemporalAccessor)
Adding New Calendars
The set of available chronologies can be extended by applications. Adding a new calendar system requires the writing of an implementation ofChronology, ChronoLocalDate and Era.
The majority of the logic specific to the calendar system will be in
ChronoLocalDate. The Chronology subclass acts as a factory.
To permit the discovery of additional chronologies, the ServiceLoader
is used. A file must be added to the META-INF/services directory with the
name 'org.threeten.bp.chrono.Chrono' listing the implementation classes.
See the ServiceLoader for more details on service loading.
For lookup by id or calendarType, the system provided calendars are found
first followed by application provided calendars.
Each chronology must define a chronology ID that is unique within the system. If the chronology represents a calendar system defined by the Unicode Locale Data Markup Language (LDML) specification then that calendar type should also be specified.
In JDK 8, this is an interface with default methods. Since there are no default methods in JDK 7, an abstract class is used.
| Field Summary | |
|---|---|
static TemporalQuery<Chronology> |
FROM
Simulate JDK 8 method reference Chronology::from. |
| Constructor Summary | |
|---|---|
protected |
Chronology()
Creates an instance. |
| Method Summary | |
|---|---|
int |
compareTo(Chronology other)
Compares this chronology to another chronology. |
ChronoLocalDate |
date(Era era,
int yearOfEra,
int month,
int dayOfMonth)
Obtains a local date in this chronology from the era, year-of-era, month-of-year and day-of-month fields. |
abstract ChronoLocalDate |
date(int prolepticYear,
int month,
int dayOfMonth)
Obtains a local date in this chronology from the proleptic-year, month-of-year and day-of-month fields. |
abstract ChronoLocalDate |
date(TemporalAccessor temporal)
Obtains a local date in this chronology from another temporal object. |
abstract ChronoLocalDate |
dateEpochDay(long epochDay)
Obtains a local date in this chronology from the epoch-day. |
ChronoLocalDate |
dateNow()
Obtains the current local date in this chronology from the system clock in the default time-zone. |
ChronoLocalDate |
dateNow(Clock clock)
Obtains the current local date in this chronology from the specified clock. |
ChronoLocalDate |
dateNow(ZoneId zone)
Obtains the current local date in this chronology from the system clock in the specified time-zone. |
ChronoLocalDate |
dateYearDay(Era era,
int yearOfEra,
int dayOfYear)
Obtains a local date in this chronology from the era, year-of-era and day-of-year fields. |
abstract ChronoLocalDate |
dateYearDay(int prolepticYear,
int dayOfYear)
Obtains a local date in this chronology from the proleptic-year and day-of-year fields. |
boolean |
equals(Object obj)
Checks if this chronology is equal to another chronology. |
abstract Era |
eraOf(int eraValue)
Creates the chronology era object from the numeric value. |
abstract List<Era> |
eras()
Gets the list of eras for the chronology. |
static Chronology |
from(TemporalAccessor temporal)
Obtains an instance of Chronology from a temporal object. |
static Set<Chronology> |
getAvailableChronologies()
Returns the available chronologies. |
abstract String |
getCalendarType()
Gets the calendar type of the underlying calendar system. |
String |
getDisplayName(TextStyle style,
Locale locale)
Gets the textual representation of this chronology. |
abstract String |
getId()
Gets the ID of the chronology. |
int |
hashCode()
A hash code for this chronology. |
abstract boolean |
isLeapYear(long prolepticYear)
Checks if the specified year is a leap year. |
ChronoLocalDateTime<?> |
localDateTime(TemporalAccessor temporal)
Obtains a local date-time in this chronology from another temporal object. |
static Chronology |
of(String id)
Obtains an instance of Chronology from a chronology ID or
calendar system type. |
static Chronology |
ofLocale(Locale locale)
Obtains an instance of Chronology from a locale. |
ChronoPeriod |
period(int years,
int months,
int days)
Obtains a period for this chronology based on years, months and days. |
abstract int |
prolepticYear(Era era,
int yearOfEra)
Calculates the proleptic-year given the era and year-of-era. |
abstract ValueRange |
range(ChronoField field)
Gets the range of valid values for the specified field. |
abstract ChronoLocalDate |
resolveDate(Map<TemporalField,Long> fieldValues,
ResolverStyle resolverStyle)
Resolves parsed ChronoField values into a date during parsing. |
String |
toString()
Outputs this chronology as a String, using the ID. |
ChronoZonedDateTime<?> |
zonedDateTime(Instant instant,
ZoneId zone)
Obtains a zoned date-time in this chronology from an Instant. |
ChronoZonedDateTime<?> |
zonedDateTime(TemporalAccessor temporal)
Obtains a zoned date-time in this chronology from another temporal object. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final TemporalQuery<Chronology> FROM
| Constructor Detail |
|---|
protected Chronology()
| Method Detail |
|---|
public static Chronology from(TemporalAccessor temporal)
Chronology from a temporal object.
A TemporalAccessor represents some form of date and time information.
This factory converts the arbitrary temporal object to an instance of Chronology.
If the specified temporal object does not have a chronology, IsoChronology is returned.
The conversion will obtain the chronology using TemporalQueries.chronology().
This method matches the signature of the functional interface TemporalQuery
allowing it to be used in queries via method reference, Chrono::from.
temporal - the temporal to convert, not null
DateTimeException - if unable to convert to an Chronologypublic static Chronology ofLocale(Locale locale)
Chronology from a locale.
This returns a Chronology based on the specified locale,
typically returning IsoChronology. Other calendar systems
are only returned if they are explicitly selected within the locale.
The Locale class provide access to a range of information useful
for localizing an application. This includes the language and region,
such as "en-GB" for English as used in Great Britain.
The Locale class also supports an extension mechanism that
can be used to identify a calendar system. The mechanism is a form
of key-value pairs, where the calendar system has the key "ca".
For example, the locale "en-JP-u-ca-japanese" represents the English
language as used in Japan with the Japanese calendar system.
This method finds the desired calendar system by in a manner equivalent
to passing "ca" to Locale#getUnicodeLocaleType(String).
If the "ca" key is not present, then IsoChronology is returned.
Note that the behavior of this method differs from the older
Calendar.getInstance(Locale) method.
If that method receives a locale of "th_TH" it will return BuddhistCalendar.
By contrast, this method will return IsoChronology.
Passing the locale "th-TH-u-ca-buddhist" into either method will
result in the Thai Buddhist calendar system and is therefore the
recommended approach going forward for Thai calendar system localization.
A similar, but simpler, situation occurs for the Japanese calendar system.
The locale "jp_JP_JP" has previously been used to access the calendar.
However, unlike the Thai locale, "ja_JP_JP" is automatically converted by
Locale to the modern and recommended form of "ja-JP-u-ca-japanese".
Thus, there is no difference in behavior between this method and
Calendar#getInstance(Locale).
locale - the locale to use to obtain the calendar system, not null
DateTimeException - if the locale-specified calendar cannot be foundpublic static Chronology of(String id)
Chronology from a chronology ID or
calendar system type.
This returns a chronology based on either the ID or the type.
The chronology ID uniquely identifies the chronology.
The calendar system type is defined by the LDML specification.
The chronology may be a system chronology or a chronology provided by the application via ServiceLoader configuration.
Since some calendars can be customized, the ID or type typically refers to the default customization. For example, the Gregorian calendar can have multiple cutover dates from the Julian, but the lookup only provides the default cutover date.
id - the chronology ID or calendar system type, not null
DateTimeException - if the chronology cannot be foundpublic static Set<Chronology> getAvailableChronologies()
Each returned Chronology is available for use in the system.
public abstract String getId()
The ID uniquely identifies the Chronology.
It can be used to lookup the Chronology using of(String).
getCalendarType()public abstract String getCalendarType()
The calendar type is an identifier defined by the
Unicode Locale Data Markup Language (LDML) specification.
It can be used to lookup the Chronology using of(String).
It can also be used as part of a locale, accessible via
Locale#getUnicodeLocaleType(String) with the key 'ca'.
getId()
public ChronoLocalDate date(Era era,
int yearOfEra,
int month,
int dayOfMonth)
era - the era of the correct type for the chronology, not nullyearOfEra - the chronology year-of-eramonth - the chronology month-of-yeardayOfMonth - the chronology day-of-month
DateTimeException - if unable to create the date
ClassCastException - if the era is not of the correct type for the chronology
public abstract ChronoLocalDate date(int prolepticYear,
int month,
int dayOfMonth)
prolepticYear - the chronology proleptic-yearmonth - the chronology month-of-yeardayOfMonth - the chronology day-of-month
DateTimeException - if unable to create the date
public ChronoLocalDate dateYearDay(Era era,
int yearOfEra,
int dayOfYear)
era - the era of the correct type for the chronology, not nullyearOfEra - the chronology year-of-eradayOfYear - the chronology day-of-year
DateTimeException - if unable to create the date
ClassCastException - if the era is not of the correct type for the chronology
public abstract ChronoLocalDate dateYearDay(int prolepticYear,
int dayOfYear)
prolepticYear - the chronology proleptic-yeardayOfYear - the chronology day-of-year
DateTimeException - if unable to create the datepublic abstract ChronoLocalDate dateEpochDay(long epochDay)
The definition of EPOCH_DAY is the same
for all calendar systems, thus it can be used for conversion.
epochDay - the epoch day
DateTimeException - if unable to create the datepublic abstract ChronoLocalDate date(TemporalAccessor temporal)
This creates a date in this chronology based on the specified TemporalAccessor.
The standard mechanism for conversion between date types is the
local epoch-day field.
temporal - the temporal object to convert, not null
DateTimeException - if unable to create the datepublic ChronoLocalDate dateNow()
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.
This implementation uses dateNow(Clock).
DateTimeException - if unable to create the datepublic ChronoLocalDate dateNow(ZoneId 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 null
DateTimeException - if unable to create the datepublic ChronoLocalDate dateNow(Clock 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 null
DateTimeException - if unable to create the datepublic ChronoLocalDateTime<?> localDateTime(TemporalAccessor temporal)
This creates a date-time in this chronology based on the specified TemporalAccessor.
The date of the date-time should be equivalent to that obtained by calling
date(TemporalAccessor).
The standard mechanism for conversion between time types is the
nano-of-day field.
temporal - the temporal object to convert, not null
DateTimeException - if unable to create the date-timepublic ChronoZonedDateTime<?> zonedDateTime(TemporalAccessor temporal)
This creates a date-time in this chronology based on the specified TemporalAccessor.
This should obtain a ZoneId using ZoneId.from(TemporalAccessor).
The date-time should be obtained by obtaining an Instant.
If that fails, the local date-time should be used.
temporal - the temporal object to convert, not null
DateTimeException - if unable to create the date-time
public ChronoZonedDateTime<?> zonedDateTime(Instant instant,
ZoneId zone)
Instant.
This creates a zoned date-time with the same instant as that specified.
instant - the instant to create the date-time from, not nullzone - the time-zone, not null
DateTimeException - if the result exceeds the supported range
public ChronoPeriod period(int years,
int months,
int days)
This returns a period tied to this chronology using the specified
years, months and days. All supplied chronologies use periods
based on years, months and days, however the ChronoPeriod API
allows the period to be represented using other units.
The default implementation returns an implementation class suitable
for most calendar systems. It is based solely on the three units.
Normalization, addition and subtraction derive the number of months
in a year from the range(ChronoField). If the number of
months within a year is fixed, then the calculation approach for
addition, subtraction and normalization is slightly different.
If implementing an unusual calendar system that is not based on
years, months and days, or where you want direct control, then
the ChronoPeriod interface must be directly implemented.
The returned period is immutable and thread-safe.
years - the number of years, may be negativemonths - the number of years, may be negativedays - the number of years, may be negative
public abstract boolean isLeapYear(long prolepticYear)
A leap-year is a year of a longer length than normal. The exact meaning is determined by the chronology according to the following constraints.
prolepticYear - the proleptic-year to check, not validated for range
public abstract int prolepticYear(Era era,
int yearOfEra)
This combines the era and year-of-era into the single proleptic-year field.
era - the era of the correct type for the chronology, not nullyearOfEra - the chronology year-of-era
DateTimeException - if unable to convert
ClassCastException - if the era is not of the correct type for the chronologypublic abstract Era eraOf(int eraValue)
The era is, conceptually, the largest division of the time-line. Most calendar systems have a single epoch dividing the time-line into two eras. However, some have multiple eras, such as one for the reign of each leader. The exact meaning is determined by the chronology according to the following constraints.
The era in use at 1970-01-01 must have the value 1. Later eras must have sequentially higher values. Earlier eras must have sequentially lower values. Each chronology must refer to an enum or similar singleton to provide the era values.
This method returns the singleton era of the correct type for the specified era value.
eraValue - the era value
DateTimeException - if unable to create the erapublic abstract List<Era> eras()
Most calendar systems have an era, within which the year has meaning. If the calendar system does not support the concept of eras, an empty list must be returned.
public abstract ValueRange range(ChronoField field)
All fields can be expressed as a long integer.
This method returns an object that describes the valid range for that value.
Note that the result only describes the minimum and maximum valid values and it is important not to read too much into them. For example, there could be values within the range that are invalid for the field.
This method will return a result whether or not the chronology supports the field.
field - the field to get the range for, not null
DateTimeException - if the range for the field cannot be obtained
public String getDisplayName(TextStyle style,
Locale locale)
This returns the textual name used to identify the chronology. The parameters control the style of the returned text and the locale.
style - the style of the text required, not nulllocale - the locale to use, not null
public abstract ChronoLocalDate resolveDate(Map<TemporalField,Long> fieldValues,
ResolverStyle resolverStyle)
ChronoField values into a date during parsing.
Most TemporalField implementations are resolved using the
resolve method on the field. By contrast, the ChronoField class
defines fields that only have meaning relative to the chronology.
As such, ChronoField date fields are resolved here in the
context of a specific chronology.
The default implementation, which explains typical resolve behaviour,
is provided in AbstractChronology.
fieldValues - the map of fields to values, which can be updated, not nullresolverStyle - the requested type of resolve, not null
DateTimeException - if the date cannot be resolved, typically
because of a conflict in the input datapublic int compareTo(Chronology other)
The comparison order first by the chronology ID string, then by any
additional information specific to the subclass.
It is "consistent with equals", as defined by Comparable.
The default implementation compares the chronology ID. Subclasses must compare any additional state that they store.
compareTo in interface Comparable<Chronology>other - the other chronology to compare to, not null
public boolean equals(Object obj)
The comparison is based on the entire state of the object.
The default implementation checks the type and calls compareTo(Chronology).
equals in class Objectobj - the object to check, null returns false
public int hashCode()
The default implementation is based on the ID and class. Subclasses should add any additional state that they store.
hashCode in class Objectpublic String toString()
String, using the ID.
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||