This chronology defines the rules of the Japanese Imperial calendar system. This calendar system is primarily used in Japan. The Japanese Imperial calendar system is the same as the ISO calendar system apart from the era-based year numbering.
Japan introduced the Gregorian calendar starting with Meiji 6. Only Meiji and later eras are supported; dates before Meiji 6, January 1 are not supported.
The supported ChronoField
instances are:
DAY_OF_WEEK
DAY_OF_MONTH
DAY_OF_YEAR
EPOCH_DAY
MONTH_OF_YEAR
PROLEPTIC_MONTH
YEAR_OF_ERA
YEAR
ERA
Implementation Specification
This class is immutable and thread-safe.
Modifier and Type | Field and Description |
---|---|
public static final JapaneseChronology | INSTANCE
Singleton instance for Japanese chronology. |
pack-priv static final LocalGregorianCalendar | |
pack-priv static final Locale | |
private static final long | serialVersionUID
Serialization version. |
Access | Constructor and Description |
---|---|
private |
Modifier and Type | Method and Description |
---|---|
public JapaneseDate | Returns: the Japanese local date, not nullthe Japanese era, not null era, int the year-of-era yearOfEra, int the month-of-year month, int the day-of-month dayOfMonth)Overrides default java. Obtains a local date in Japanese calendar system from the era, year-of-era, month-of-year and day-of-month fields. |
public JapaneseDate | Returns: the Japanese local date, not nullthe proleptic-year prolepticYear, int the month-of-year month, int the day-of-month dayOfMonth)Implements java. Obtains a local date in Japanese calendar system from the proleptic-year, month-of-year and day-of-month fields. |
public JapaneseDate | date(TemporalAccessor
the temporal object to convert, not null temporal)Implements java. Obtains a local date in this chronology from another temporal object. |
public JapaneseDate | Returns: the Japanese local date, not nullthe epoch day epochDay)Implements java. Obtains a local date in the Japanese calendar system from the epoch-day. |
public JapaneseDate | dateNow()
Overrides default java. Obtains the current local date in this chronology from the system clock in the default time-zone. |
public JapaneseDate | dateNow(ZoneId
the zone ID to use, not null zone)Overrides default java. Obtains the current local date in this chronology from the system clock in the specified time-zone. |
public JapaneseDate | dateNow(Clock
the clock to use, not null clock)Overrides default java. Obtains the current local date in this chronology from the specified clock. |
public JapaneseDate | Returns: the Japanese local date, not nullthe Japanese era, not null era, int the year-of-era yearOfEra, int the day-of-year dayOfYear)Overrides default java. Obtains a local date in Japanese calendar system from the era, year-of-era and day-of-year fields. |
public JapaneseDate | Returns: the Japanese local date, not nullthe proleptic-year prolepticYear, int the day-of-year dayOfYear)Implements java. Obtains a local date in Japanese calendar system from the proleptic-year and day-of-year fields. |
public JapaneseEra | Returns: the JapaneseEra for the given numeric era valuethe era value eraValue)Implements java. Returns the calendar system era object from the given numeric value. |
public List | |
public String | Returns: the calendar system type - 'japanese'Implements java. Gets the calendar type of the underlying calendar system - 'japanese'. |
pack-priv JapaneseEra | |
public String | Returns: the chronology ID - 'Japanese'Implements java. Gets the ID of the chronology - 'Japanese'. |
public boolean | Returns: true Overrides default java.
|
public boolean | Returns: true if the year is a leap yearthe proleptic-year to check, not validated for range prolepticYear)Implements java. Checks if the specified year is a leap year. |
public ChronoLocalDateTime | localDateTime(TemporalAccessor
the temporal object to convert, not null temporal)Overrides default java. Obtains a local date-time in this chronology from another temporal object. |
public int | prolepticYear(Era
the era of the correct type for the chronology, not null era, int the chronology year-of-era yearOfEra)Implements java. Calculates the proleptic-year given the era and year-of-era. |
private int | |
public ValueRange | range(ChronoField
the field to get the range for, not null field)Implements java. Gets the range of valid values for the specified field. |
private void | readObject(ObjectInputStream
the stream to read s)Hides java. Defend against malicious streams. |
public JapaneseDate | resolveDate(Map<TemporalField, Long>
the map of fields to values, which can be updated, not null fieldValues, ResolverStyle the requested type of resolve, not null resolverStyle)Overrides java. Implements java. Resolves parsed |
private ChronoLocalDate | resolveYD(JapaneseEra era, int yoe, Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle)
|
pack-priv ChronoLocalDate | resolveYearOfEra(Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle)
Overrides java.
|
private ChronoLocalDate | resolveYMD(JapaneseEra era, int yoe, Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle)
|
pack-priv Object | Returns: the instance ofSer , not nullOverrides java. Writes the Chronology using a dedicated serialized form. |
public ChronoZonedDateTime | zonedDateTime(TemporalAccessor
the temporal object to convert, not null temporal)Overrides default java. Obtains a |
public ChronoZonedDateTime | zonedDateTime(Instant
the instant to create the date-time from, not null instant, ZoneId the time-zone, not null zone)Overrides default java. Obtains a |
INSTANCE | back to summary |
---|---|
public static final JapaneseChronology INSTANCE Singleton instance for Japanese chronology. |
JCAL | back to summary |
---|---|
pack-priv static final LocalGregorianCalendar JCAL |
LOCALE | back to summary |
---|---|
pack-priv static final Locale LOCALE |
serialVersionUID | back to summary |
---|---|
private static final long serialVersionUID Serialization version. |
JapaneseChronology | back to summary |
---|---|
private JapaneseChronology() Restricted constructor. |
date | back to summary |
---|---|
public JapaneseDate date(Era era, int yearOfEra, int month, int dayOfMonth) Overrides default java. Obtains a local date in Japanese calendar system from the era, year-of-era, month-of-year and day-of-month fields. The Japanese month and day-of-month are the same as those in the ISO calendar system. They are not reset when the era changes. For example: 6th Jan Showa 64 = ISO 1989-01-06 7th Jan Showa 64 = ISO 1989-01-07 8th Jan Heisei 1 = ISO 1989-01-08 9th Jan Heisei 1 = ISO 1989-01-09
|
date | back to summary |
---|---|
public JapaneseDate date(int prolepticYear, int month, int dayOfMonth) Implements java. Obtains a local date in Japanese calendar system from the proleptic-year, month-of-year and day-of-month fields. The Japanese proleptic year, month and day-of-month are the same as those in the ISO calendar system. They are not reset when the era changes.
|
date | back to summary |
---|---|
public JapaneseDate date(TemporalAccessor temporal) Implements java. Doc from java. Obtains a local date in this chronology from another temporal object.
This obtains a date in this chronology based on the specified temporal.
A
The conversion typically uses the
This method matches the signature of the functional interface
|
dateEpochDay | back to summary |
---|---|
public JapaneseDate dateEpochDay(long epochDay) Implements java. Obtains a local date in the Japanese calendar system from the epoch-day.
|
dateNow | back to summary |
---|---|
public JapaneseDate dateNow() Overrides default java. Doc from java. Obtains the current local date in this chronology from the system clock in the default time-zone.
This will query the Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
|
dateNow | back to summary |
---|---|
public JapaneseDate dateNow(ZoneId zone) Overrides default java. Doc from java. Obtains the current local date in this chronology from the system clock in the specified time-zone.
This will query the Using this method will prevent the ability to use an alternate clock for testing because the clock is hard-coded.
|
dateNow | back to summary |
---|---|
public JapaneseDate dateNow(Clock clock) Overrides default java. Doc from java. Obtains the current local date in this chronology 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
|
dateYearDay | back to summary |
---|---|
public JapaneseDate dateYearDay(Era era, int yearOfEra, int dayOfYear) Overrides default java. Obtains a local date in Japanese calendar system from the era, year-of-era and day-of-year fields. The day-of-year in this factory is expressed relative to the start of the year-of-era. This definition changes the normal meaning of day-of-year only in those years where the year-of-era is reset to one due to a change in the era. For example: 6th Jan Showa 64 = day-of-year 6 7th Jan Showa 64 = day-of-year 7 8th Jan Heisei 1 = day-of-year 1 9th Jan Heisei 1 = day-of-year 2
|
dateYearDay | back to summary |
---|---|
public JapaneseDate dateYearDay(int prolepticYear, int dayOfYear) Implements java. Obtains a local date in Japanese calendar system from the proleptic-year and day-of-year fields. The day-of-year in this factory is expressed relative to the start of the proleptic year. The Japanese proleptic year and day-of-year are the same as those in the ISO calendar system. They are not reset when the era changes.
|
eraOf | back to summary |
---|---|
public JapaneseEra eraOf(int eraValue) Implements java. Returns the calendar system era object from the given numeric value.
The numeric values supported by this method are the same as the
numeric values supported by
|
eras | back to summary |
---|---|
public List Implements java. Doc from java. Gets the list of eras for the chronology. 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. |
getCalendarType | back to summary |
---|---|
public String getCalendarType() Implements java. Gets the calendar type of the underlying calendar system - 'japanese'.
The calendar type is an identifier defined by the
Unicode Locale Data Markup Language (LDML) specification.
It can be used to lookup the |
getCurrentEra | back to summary |
---|---|
pack-priv JapaneseEra getCurrentEra() |
getId | back to summary |
---|---|
public String getId() Implements java. Gets the ID of the chronology - 'Japanese'.
The ID uniquely identifies the
|
isIsoBased | back to summary |
---|---|
public boolean isIsoBased() Overrides default java.
|
isLeapYear | back to summary |
---|---|
public boolean isLeapYear(long prolepticYear) Implements java. Checks if the specified year is a leap year. Japanese calendar leap years occur exactly in line with ISO leap years. This method does not validate the year passed in, and only has a well-defined result for years in the supported range.
|
localDateTime | back to summary |
---|---|
public ChronoLocalDateTime Overrides default java. Doc from java. Obtains a local date-time in this chronology from another temporal object.
This obtains a date-time in this chronology based on the specified temporal.
A
The conversion extracts and combines the
This method matches the signature of the functional interface
|
prolepticYear | back to summary |
---|---|
public int prolepticYear(Era era, int yearOfEra) Implements java. Doc from java. Calculates the proleptic-year given the era and year-of-era. This combines the era and year-of-era into the single proleptic-year field.
If the chronology makes active use of eras, such as |
prolepticYearLenient | back to summary |
---|---|
private int prolepticYearLenient(JapaneseEra era, int yearOfEra) |
range | back to summary |
---|---|
public ValueRange range(ChronoField field) Implements java. Doc from java. Gets the range of valid values for the specified field.
All fields can be expressed as a 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.
|
readObject | back to summary |
---|---|
private void readObject(ObjectInputStream s) throws InvalidObjectException Hides java. Defend against malicious streams.
|
resolveDate | back to summary |
---|---|
public JapaneseDate resolveDate(Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle) Overrides java. Implements java. Doc from java. Resolves parsed
Most
The default implementation is suitable for most calendar systems.
If
|
resolveYD | back to summary |
---|---|
private ChronoLocalDate resolveYD(JapaneseEra era, int yoe, Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle) |
resolveYearOfEra | back to summary |
---|---|
pack-priv ChronoLocalDate resolveYearOfEra(Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle) Overrides java.
|
resolveYMD | back to summary |
---|---|
private ChronoLocalDate resolveYMD(JapaneseEra era, int yoe, Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle) |
writeReplace | back to summary |
---|---|
pack-priv Object writeReplace() Overrides java. Writes the Chronology using a dedicated serialized form. |
zonedDateTime | back to summary |
---|---|
public ChronoZonedDateTime Overrides default java. Doc from java. Obtains a
This obtains a zoned date-time in this chronology based on the specified temporal.
A
The conversion will first obtain a
This method matches the signature of the functional interface
|
zonedDateTime | back to summary |
---|---|
public ChronoZonedDateTime Overrides default java. Doc from java. Obtains a This obtains a zoned date-time with the same instant as that specified.
|