Path: blob/master/src/java.base/share/classes/java/time/chrono/IsoChronology.java
41159 views
/*1* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/*26* This file is available under and governed by the GNU General Public27* License version 2 only, as published by the Free Software Foundation.28* However, the following notice accompanied the original version of this29* file:30*31* Copyright (c) 2012, Stephen Colebourne & Michael Nascimento Santos32*33* All rights reserved.34*35* Redistribution and use in source and binary forms, with or without36* modification, are permitted provided that the following conditions are met:37*38* * Redistributions of source code must retain the above copyright notice,39* this list of conditions and the following disclaimer.40*41* * Redistributions in binary form must reproduce the above copyright notice,42* this list of conditions and the following disclaimer in the documentation43* and/or other materials provided with the distribution.44*45* * Neither the name of JSR-310 nor the names of its contributors46* may be used to endorse or promote products derived from this software47* without specific prior written permission.48*49* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS50* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT51* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR52* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR53* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,54* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,55* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR56* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF57* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING58* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS59* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.60*/61package java.time.chrono;6263import static java.time.temporal.ChronoField.DAY_OF_MONTH;64import static java.time.temporal.ChronoField.ERA;65import static java.time.temporal.ChronoField.HOUR_OF_DAY;66import static java.time.temporal.ChronoField.MINUTE_OF_HOUR;67import static java.time.temporal.ChronoField.MONTH_OF_YEAR;68import static java.time.temporal.ChronoField.PROLEPTIC_MONTH;69import static java.time.temporal.ChronoField.SECOND_OF_MINUTE;70import static java.time.temporal.ChronoField.YEAR;71import static java.time.temporal.ChronoField.YEAR_OF_ERA;7273import java.io.InvalidObjectException;74import java.io.ObjectInputStream;75import java.io.Serializable;76import java.time.Clock;77import java.time.DateTimeException;78import java.time.Instant;79import java.time.LocalDate;80import java.time.LocalDateTime;81import java.time.Month;82import java.time.Period;83import java.time.Year;84import java.time.ZonedDateTime;85import java.time.ZoneId;86import java.time.ZoneOffset;87import java.time.format.ResolverStyle;88import java.time.temporal.ChronoField;89import java.time.temporal.TemporalAccessor;90import java.time.temporal.TemporalField;91import java.time.temporal.ValueRange;92import java.util.List;93import java.util.Locale;94import java.util.Map;95import java.util.Objects;9697/**98* The ISO calendar system.99* <p>100* This chronology defines the rules of the ISO calendar system.101* This calendar system is based on the ISO-8601 standard, which is the102* <i>de facto</i> world calendar.103* <p>104* The fields are defined as follows:105* <ul>106* <li>era - There are two eras, 'Current Era' (CE) and 'Before Current Era' (BCE).107* <li>year-of-era - The year-of-era is the same as the proleptic-year for the current CE era.108* For the BCE era before the ISO epoch the year increases from 1 upwards as time goes backwards.109* <li>proleptic-year - The proleptic year is the same as the year-of-era for the110* current era. For the previous era, years have zero, then negative values.111* <li>month-of-year - There are 12 months in an ISO year, numbered from 1 to 12.112* <li>day-of-month - There are between 28 and 31 days in each of the ISO month, numbered from 1 to 31.113* Months 4, 6, 9 and 11 have 30 days, Months 1, 3, 5, 7, 8, 10 and 12 have 31 days.114* Month 2 has 28 days, or 29 in a leap year.115* <li>day-of-year - There are 365 days in a standard ISO year and 366 in a leap year.116* The days are numbered from 1 to 365 or 1 to 366.117* <li>leap-year - Leap years occur every 4 years, except where the year is divisble by 100 and not divisble by 400.118* </ul>119*120* @implSpec121* This class is immutable and thread-safe.122*123* @since 1.8124*/125public final class IsoChronology extends AbstractChronology implements Serializable {126127/**128* Singleton instance of the ISO chronology.129*/130public static final IsoChronology INSTANCE = new IsoChronology();131132/**133* Serialization version.134*/135@java.io.Serial136private static final long serialVersionUID = -1440403870442975015L;137138private static final long DAYS_0000_TO_1970 = (146097 * 5L) - (30L * 365L + 7L); // taken from LocalDate139140/**141* Restricted constructor.142*/143private IsoChronology() {144}145146//-----------------------------------------------------------------------147/**148* Gets the ID of the chronology - 'ISO'.149* <p>150* The ID uniquely identifies the {@code Chronology}.151* It can be used to lookup the {@code Chronology} using {@link Chronology#of(String)}.152*153* @return the chronology ID - 'ISO'154* @see #getCalendarType()155*/156@Override157public String getId() {158return "ISO";159}160161/**162* Gets the calendar type of the underlying calendar system - 'iso8601'.163* <p>164* The calendar type is an identifier defined by the165* <em>Unicode Locale Data Markup Language (LDML)</em> specification.166* It can be used to lookup the {@code Chronology} using {@link Chronology#of(String)}.167* It can also be used as part of a locale, accessible via168* {@link Locale#getUnicodeLocaleType(String)} with the key 'ca'.169*170* @return the calendar system type - 'iso8601'171* @see #getId()172*/173@Override174public String getCalendarType() {175return "iso8601";176}177178//-----------------------------------------------------------------------179/**180* Obtains an ISO local date from the era, year-of-era, month-of-year181* and day-of-month fields.182*183* @param era the ISO era, not null184* @param yearOfEra the ISO year-of-era185* @param month the ISO month-of-year186* @param dayOfMonth the ISO day-of-month187* @return the ISO local date, not null188* @throws DateTimeException if unable to create the date189* @throws ClassCastException if the type of {@code era} is not {@code IsoEra}190*/191@Override // override with covariant return type192public LocalDate date(Era era, int yearOfEra, int month, int dayOfMonth) {193return date(prolepticYear(era, yearOfEra), month, dayOfMonth);194}195196/**197* Obtains an ISO local date from the proleptic-year, month-of-year198* and day-of-month fields.199* <p>200* This is equivalent to {@link LocalDate#of(int, int, int)}.201*202* @param prolepticYear the ISO proleptic-year203* @param month the ISO month-of-year204* @param dayOfMonth the ISO day-of-month205* @return the ISO local date, not null206* @throws DateTimeException if unable to create the date207*/208@Override // override with covariant return type209public LocalDate date(int prolepticYear, int month, int dayOfMonth) {210return LocalDate.of(prolepticYear, month, dayOfMonth);211}212213/**214* Obtains an ISO local date from the era, year-of-era and day-of-year fields.215*216* @param era the ISO era, not null217* @param yearOfEra the ISO year-of-era218* @param dayOfYear the ISO day-of-year219* @return the ISO local date, not null220* @throws DateTimeException if unable to create the date221*/222@Override // override with covariant return type223public LocalDate dateYearDay(Era era, int yearOfEra, int dayOfYear) {224return dateYearDay(prolepticYear(era, yearOfEra), dayOfYear);225}226227/**228* Obtains an ISO local date from the proleptic-year and day-of-year fields.229* <p>230* This is equivalent to {@link LocalDate#ofYearDay(int, int)}.231*232* @param prolepticYear the ISO proleptic-year233* @param dayOfYear the ISO day-of-year234* @return the ISO local date, not null235* @throws DateTimeException if unable to create the date236*/237@Override // override with covariant return type238public LocalDate dateYearDay(int prolepticYear, int dayOfYear) {239return LocalDate.ofYearDay(prolepticYear, dayOfYear);240}241242/**243* Obtains an ISO local date from the epoch-day.244* <p>245* This is equivalent to {@link LocalDate#ofEpochDay(long)}.246*247* @param epochDay the epoch day248* @return the ISO local date, not null249* @throws DateTimeException if unable to create the date250*/251@Override // override with covariant return type252public LocalDate dateEpochDay(long epochDay) {253return LocalDate.ofEpochDay(epochDay);254}255256//-----------------------------------------------------------------------257/**258* Obtains an ISO local date from another date-time object.259* <p>260* This is equivalent to {@link LocalDate#from(TemporalAccessor)}.261*262* @param temporal the date-time object to convert, not null263* @return the ISO local date, not null264* @throws DateTimeException if unable to create the date265*/266@Override // override with covariant return type267public LocalDate date(TemporalAccessor temporal) {268return LocalDate.from(temporal);269}270271//-----------------------------------------------------------------------272/**273* Gets the number of seconds from the epoch of 1970-01-01T00:00:00Z.274* <p>275* The number of seconds is calculated using the year,276* month, day-of-month, hour, minute, second, and zoneOffset.277*278* @param prolepticYear the year, from MIN_YEAR to MAX_YEAR279* @param month the month-of-year, from 1 to 12280* @param dayOfMonth the day-of-month, from 1 to 31281* @param hour the hour-of-day, from 0 to 23282* @param minute the minute-of-hour, from 0 to 59283* @param second the second-of-minute, from 0 to 59284* @param zoneOffset the zone offset, not null285* @return the number of seconds relative to 1970-01-01T00:00:00Z, may be negative286* @throws DateTimeException if the value of any argument is out of range,287* or if the day-of-month is invalid for the month-of-year288* @since 9289*/290@Override291public long epochSecond(int prolepticYear, int month, int dayOfMonth,292int hour, int minute, int second, ZoneOffset zoneOffset) {293YEAR.checkValidValue(prolepticYear);294MONTH_OF_YEAR.checkValidValue(month);295DAY_OF_MONTH.checkValidValue(dayOfMonth);296HOUR_OF_DAY.checkValidValue(hour);297MINUTE_OF_HOUR.checkValidValue(minute);298SECOND_OF_MINUTE.checkValidValue(second);299Objects.requireNonNull(zoneOffset, "zoneOffset");300if (dayOfMonth > 28) {301int dom = numberOfDaysOfMonth(prolepticYear, month);302if (dayOfMonth > dom) {303if (dayOfMonth == 29) {304throw new DateTimeException("Invalid date 'February 29' as '" + prolepticYear + "' is not a leap year");305} else {306throw new DateTimeException("Invalid date '" + Month.of(month).name() + " " + dayOfMonth + "'");307}308}309}310311long totalDays = 0;312int timeinSec = 0;313totalDays += 365L * prolepticYear;314if (prolepticYear >= 0) {315totalDays += (prolepticYear + 3L) / 4 - (prolepticYear + 99L) / 100 + (prolepticYear + 399L) / 400;316} else {317totalDays -= prolepticYear / -4 - prolepticYear / -100 + prolepticYear / -400;318}319totalDays += (367 * month - 362) / 12;320totalDays += dayOfMonth - 1;321if (month > 2) {322totalDays--;323if (IsoChronology.INSTANCE.isLeapYear(prolepticYear) == false) {324totalDays--;325}326}327totalDays -= DAYS_0000_TO_1970;328timeinSec = (hour * 60 + minute ) * 60 + second;329return Math.addExact(Math.multiplyExact(totalDays, 86400L), timeinSec - zoneOffset.getTotalSeconds());330}331332/**333* Gets the number of days for the given month in the given year.334*335* @param year the year to represent, from MIN_YEAR to MAX_YEAR336* @param month the month-of-year to represent, from 1 to 12337* @return the number of days for the given month in the given year338*/339private int numberOfDaysOfMonth(int year, int month) {340int dom;341switch (month) {342case 2:343dom = (IsoChronology.INSTANCE.isLeapYear(year) ? 29 : 28);344break;345case 4:346case 6:347case 9:348case 11:349dom = 30;350break;351default:352dom = 31;353break;354}355return dom;356}357358359/**360* Obtains an ISO local date-time from another date-time object.361* <p>362* This is equivalent to {@link LocalDateTime#from(TemporalAccessor)}.363*364* @param temporal the date-time object to convert, not null365* @return the ISO local date-time, not null366* @throws DateTimeException if unable to create the date-time367*/368@Override // override with covariant return type369public LocalDateTime localDateTime(TemporalAccessor temporal) {370return LocalDateTime.from(temporal);371}372373/**374* Obtains an ISO zoned date-time from another date-time object.375* <p>376* This is equivalent to {@link ZonedDateTime#from(TemporalAccessor)}.377*378* @param temporal the date-time object to convert, not null379* @return the ISO zoned date-time, not null380* @throws DateTimeException if unable to create the date-time381*/382@Override // override with covariant return type383public ZonedDateTime zonedDateTime(TemporalAccessor temporal) {384return ZonedDateTime.from(temporal);385}386387/**388* Obtains an ISO zoned date-time in this chronology from an {@code Instant}.389* <p>390* This is equivalent to {@link ZonedDateTime#ofInstant(Instant, ZoneId)}.391*392* @param instant the instant to create the date-time from, not null393* @param zone the time-zone, not null394* @return the zoned date-time, not null395* @throws DateTimeException if the result exceeds the supported range396*/397@Override398public ZonedDateTime zonedDateTime(Instant instant, ZoneId zone) {399return ZonedDateTime.ofInstant(instant, zone);400}401402//-----------------------------------------------------------------------403/**404* Obtains the current ISO local date from the system clock in the default time-zone.405* <p>406* This will query the {@link Clock#systemDefaultZone() system clock} in the default407* time-zone to obtain the current date.408* <p>409* Using this method will prevent the ability to use an alternate clock for testing410* because the clock is hard-coded.411*412* @return the current ISO local date using the system clock and default time-zone, not null413* @throws DateTimeException if unable to create the date414*/415@Override // override with covariant return type416public LocalDate dateNow() {417return dateNow(Clock.systemDefaultZone());418}419420/**421* Obtains the current ISO local date from the system clock in the specified time-zone.422* <p>423* This will query the {@link Clock#system(ZoneId) system clock} to obtain the current date.424* Specifying the time-zone avoids dependence on the default time-zone.425* <p>426* Using this method will prevent the ability to use an alternate clock for testing427* because the clock is hard-coded.428*429* @return the current ISO local date using the system clock, not null430* @throws DateTimeException if unable to create the date431*/432@Override // override with covariant return type433public LocalDate dateNow(ZoneId zone) {434return dateNow(Clock.system(zone));435}436437/**438* Obtains the current ISO local date from the specified clock.439* <p>440* This will query the specified clock to obtain the current date - today.441* Using this method allows the use of an alternate clock for testing.442* The alternate clock may be introduced using {@link Clock dependency injection}.443*444* @param clock the clock to use, not null445* @return the current ISO local date, not null446* @throws DateTimeException if unable to create the date447*/448@Override // override with covariant return type449public LocalDate dateNow(Clock clock) {450Objects.requireNonNull(clock, "clock");451return date(LocalDate.now(clock));452}453454//-----------------------------------------------------------------------455/**456* Checks if the year is a leap year, according to the ISO proleptic457* calendar system rules.458* <p>459* This method applies the current rules for leap years across the whole time-line.460* In general, a year is a leap year if it is divisible by four without461* remainder. However, years divisible by 100, are not leap years, with462* the exception of years divisible by 400 which are.463* <p>464* For example, 1904 is a leap year it is divisible by 4.465* 1900 was not a leap year as it is divisible by 100, however 2000 was a466* leap year as it is divisible by 400.467* <p>468* The calculation is proleptic - applying the same rules into the far future and far past.469* This is historically inaccurate, but is correct for the ISO-8601 standard.470*471* @param prolepticYear the ISO proleptic year to check472* @return true if the year is leap, false otherwise473*/474@Override475public boolean isLeapYear(long prolepticYear) {476return ((prolepticYear & 3) == 0) && ((prolepticYear % 100) != 0 || (prolepticYear % 400) == 0);477}478479@Override480public int prolepticYear(Era era, int yearOfEra) {481if (!(era instanceof IsoEra)) {482throw new ClassCastException("Era must be IsoEra");483}484return (era == IsoEra.CE ? yearOfEra : 1 - yearOfEra);485}486487@Override488public IsoEra eraOf(int eraValue) {489return IsoEra.of(eraValue);490}491492@Override493public List<Era> eras() {494return List.of(IsoEra.values());495}496497//-----------------------------------------------------------------------498/**499* Resolves parsed {@code ChronoField} values into a date during parsing.500* <p>501* Most {@code TemporalField} implementations are resolved using the502* resolve method on the field. By contrast, the {@code ChronoField} class503* defines fields that only have meaning relative to the chronology.504* As such, {@code ChronoField} date fields are resolved here in the505* context of a specific chronology.506* <p>507* {@code ChronoField} instances on the ISO calendar system are resolved508* as follows.509* <ul>510* <li>{@code EPOCH_DAY} - If present, this is converted to a {@code LocalDate}511* and all other date fields are then cross-checked against the date.512* <li>{@code PROLEPTIC_MONTH} - If present, then it is split into the513* {@code YEAR} and {@code MONTH_OF_YEAR}. If the mode is strict or smart514* then the field is validated.515* <li>{@code YEAR_OF_ERA} and {@code ERA} - If both are present, then they516* are combined to form a {@code YEAR}. In lenient mode, the {@code YEAR_OF_ERA}517* range is not validated, in smart and strict mode it is. The {@code ERA} is518* validated for range in all three modes. If only the {@code YEAR_OF_ERA} is519* present, and the mode is smart or lenient, then the current era (CE/AD)520* is assumed. In strict mode, no era is assumed and the {@code YEAR_OF_ERA} is521* left untouched. If only the {@code ERA} is present, then it is left untouched.522* <li>{@code YEAR}, {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} -523* If all three are present, then they are combined to form a {@code LocalDate}.524* In all three modes, the {@code YEAR} is validated. If the mode is smart or strict,525* then the month and day are validated, with the day validated from 1 to 31.526* If the mode is lenient, then the date is combined in a manner equivalent to527* creating a date on the first of January in the requested year, then adding528* the difference in months, then the difference in days.529* If the mode is smart, and the day-of-month is greater than the maximum for530* the year-month, then the day-of-month is adjusted to the last day-of-month.531* If the mode is strict, then the three fields must form a valid date.532* <li>{@code YEAR} and {@code DAY_OF_YEAR} -533* If both are present, then they are combined to form a {@code LocalDate}.534* In all three modes, the {@code YEAR} is validated.535* If the mode is lenient, then the date is combined in a manner equivalent to536* creating a date on the first of January in the requested year, then adding537* the difference in days.538* If the mode is smart or strict, then the two fields must form a valid date.539* <li>{@code YEAR}, {@code MONTH_OF_YEAR}, {@code ALIGNED_WEEK_OF_MONTH} and540* {@code ALIGNED_DAY_OF_WEEK_IN_MONTH} -541* If all four are present, then they are combined to form a {@code LocalDate}.542* In all three modes, the {@code YEAR} is validated.543* If the mode is lenient, then the date is combined in a manner equivalent to544* creating a date on the first of January in the requested year, then adding545* the difference in months, then the difference in weeks, then in days.546* If the mode is smart or strict, then the all four fields are validated to547* their outer ranges. The date is then combined in a manner equivalent to548* creating a date on the first day of the requested year and month, then adding549* the amount in weeks and days to reach their values. If the mode is strict,550* the date is additionally validated to check that the day and week adjustment551* did not change the month.552* <li>{@code YEAR}, {@code MONTH_OF_YEAR}, {@code ALIGNED_WEEK_OF_MONTH} and553* {@code DAY_OF_WEEK} - If all four are present, then they are combined to554* form a {@code LocalDate}. The approach is the same as described above for555* years, months and weeks in {@code ALIGNED_DAY_OF_WEEK_IN_MONTH}.556* The day-of-week is adjusted as the next or same matching day-of-week once557* the years, months and weeks have been handled.558* <li>{@code YEAR}, {@code ALIGNED_WEEK_OF_YEAR} and {@code ALIGNED_DAY_OF_WEEK_IN_YEAR} -559* If all three are present, then they are combined to form a {@code LocalDate}.560* In all three modes, the {@code YEAR} is validated.561* If the mode is lenient, then the date is combined in a manner equivalent to562* creating a date on the first of January in the requested year, then adding563* the difference in weeks, then in days.564* If the mode is smart or strict, then the all three fields are validated to565* their outer ranges. The date is then combined in a manner equivalent to566* creating a date on the first day of the requested year, then adding567* the amount in weeks and days to reach their values. If the mode is strict,568* the date is additionally validated to check that the day and week adjustment569* did not change the year.570* <li>{@code YEAR}, {@code ALIGNED_WEEK_OF_YEAR} and {@code DAY_OF_WEEK} -571* If all three are present, then they are combined to form a {@code LocalDate}.572* The approach is the same as described above for years and weeks in573* {@code ALIGNED_DAY_OF_WEEK_IN_YEAR}. The day-of-week is adjusted as the574* next or same matching day-of-week once the years and weeks have been handled.575* </ul>576*577* @param fieldValues the map of fields to values, which can be updated, not null578* @param resolverStyle the requested type of resolve, not null579* @return the resolved date, null if insufficient information to create a date580* @throws DateTimeException if the date cannot be resolved, typically581* because of a conflict in the input data582*/583@Override // override for performance584public LocalDate resolveDate(Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle) {585return (LocalDate) super.resolveDate(fieldValues, resolverStyle);586}587588@Override // override for better proleptic algorithm589void resolveProlepticMonth(Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle) {590Long pMonth = fieldValues.remove(PROLEPTIC_MONTH);591if (pMonth != null) {592if (resolverStyle != ResolverStyle.LENIENT) {593PROLEPTIC_MONTH.checkValidValue(pMonth);594}595addFieldValue(fieldValues, MONTH_OF_YEAR, Math.floorMod(pMonth, 12) + 1);596addFieldValue(fieldValues, YEAR, Math.floorDiv(pMonth, 12));597}598}599600@Override // override for enhanced behaviour601LocalDate resolveYearOfEra(Map<TemporalField, Long> fieldValues, ResolverStyle resolverStyle) {602Long yoeLong = fieldValues.remove(YEAR_OF_ERA);603if (yoeLong != null) {604if (resolverStyle != ResolverStyle.LENIENT) {605YEAR_OF_ERA.checkValidValue(yoeLong);606}607Long era = fieldValues.remove(ERA);608if (era == null) {609Long year = fieldValues.get(YEAR);610if (resolverStyle == ResolverStyle.STRICT) {611// do not invent era if strict, but do cross-check with year612if (year != null) {613addFieldValue(fieldValues, YEAR, (year > 0 ? yoeLong: Math.subtractExact(1, yoeLong)));614} else {615// reinstate the field removed earlier, no cross-check issues616fieldValues.put(YEAR_OF_ERA, yoeLong);617}618} else {619// invent era620addFieldValue(fieldValues, YEAR, (year == null || year > 0 ? yoeLong: Math.subtractExact(1, yoeLong)));621}622} else if (era.longValue() == 1L) {623addFieldValue(fieldValues, YEAR, yoeLong);624} else if (era.longValue() == 0L) {625addFieldValue(fieldValues, YEAR, Math.subtractExact(1, yoeLong));626} else {627throw new DateTimeException("Invalid value for era: " + era);628}629} else if (fieldValues.containsKey(ERA)) {630ERA.checkValidValue(fieldValues.get(ERA)); // always validated631}632return null;633}634635@Override // override for performance636LocalDate resolveYMD(Map <TemporalField, Long> fieldValues, ResolverStyle resolverStyle) {637int y = YEAR.checkValidIntValue(fieldValues.remove(YEAR));638if (resolverStyle == ResolverStyle.LENIENT) {639long months = Math.subtractExact(fieldValues.remove(MONTH_OF_YEAR), 1);640long days = Math.subtractExact(fieldValues.remove(DAY_OF_MONTH), 1);641return LocalDate.of(y, 1, 1).plusMonths(months).plusDays(days);642}643int moy = MONTH_OF_YEAR.checkValidIntValue(fieldValues.remove(MONTH_OF_YEAR));644int dom = DAY_OF_MONTH.checkValidIntValue(fieldValues.remove(DAY_OF_MONTH));645if (resolverStyle == ResolverStyle.SMART) { // previous valid646if (moy == 4 || moy == 6 || moy == 9 || moy == 11) {647dom = Math.min(dom, 30);648} else if (moy == 2) {649dom = Math.min(dom, Month.FEBRUARY.length(Year.isLeap(y)));650651}652}653return LocalDate.of(y, moy, dom);654}655656//-----------------------------------------------------------------------657@Override658public ValueRange range(ChronoField field) {659return field.range();660}661662//-----------------------------------------------------------------------663/**664* Obtains a period for this chronology based on years, months and days.665* <p>666* This returns a period tied to the ISO chronology using the specified667* years, months and days. See {@link Period} for further details.668*669* @param years the number of years, may be negative670* @param months the number of years, may be negative671* @param days the number of years, may be negative672* @return the ISO period, not null673*/674@Override // override with covariant return type675public Period period(int years, int months, int days) {676return Period.of(years, months, days);677}678679//-----------------------------------------------------------------------680/**681* Writes the Chronology using a682* <a href="{@docRoot}/serialized-form.html#java.time.chrono.Ser">dedicated serialized form</a>.683* @serialData684* <pre>685* out.writeByte(1); // identifies a Chronology686* out.writeUTF(getId());687* </pre>688*689* @return the instance of {@code Ser}, not null690*/691@Override692@java.io.Serial693Object writeReplace() {694return super.writeReplace();695}696697/**698* Defend against malicious streams.699*700* @param s the stream to read701* @throws InvalidObjectException always702*/703@java.io.Serial704private void readObject(ObjectInputStream s) throws InvalidObjectException {705throw new InvalidObjectException("Deserialization via serialization delegate");706}707}708709710