Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/java/time/OffsetDateTime.java
38829 views
/*1* Copyright (c) 2012, 2015, 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) 2007-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;6263import static java.time.temporal.ChronoField.EPOCH_DAY;64import static java.time.temporal.ChronoField.INSTANT_SECONDS;65import static java.time.temporal.ChronoField.NANO_OF_DAY;66import static java.time.temporal.ChronoField.OFFSET_SECONDS;67import static java.time.temporal.ChronoUnit.FOREVER;68import static java.time.temporal.ChronoUnit.NANOS;6970import java.io.IOException;71import java.io.ObjectInput;72import java.io.ObjectOutput;73import java.io.InvalidObjectException;74import java.io.ObjectInputStream;75import java.io.Serializable;76import java.time.chrono.IsoChronology;77import java.time.format.DateTimeFormatter;78import java.time.format.DateTimeParseException;79import java.time.temporal.ChronoField;80import java.time.temporal.ChronoUnit;81import java.time.temporal.Temporal;82import java.time.temporal.TemporalAccessor;83import java.time.temporal.TemporalAdjuster;84import java.time.temporal.TemporalAmount;85import java.time.temporal.TemporalField;86import java.time.temporal.TemporalQueries;87import java.time.temporal.TemporalQuery;88import java.time.temporal.TemporalUnit;89import java.time.temporal.UnsupportedTemporalTypeException;90import java.time.temporal.ValueRange;91import java.time.zone.ZoneRules;92import java.util.Comparator;93import java.util.Objects;9495/**96* A date-time with an offset from UTC/Greenwich in the ISO-8601 calendar system,97* such as {@code 2007-12-03T10:15:30+01:00}.98* <p>99* {@code OffsetDateTime} is an immutable representation of a date-time with an offset.100* This class stores all date and time fields, to a precision of nanoseconds,101* as well as the offset from UTC/Greenwich. For example, the value102* "2nd October 2007 at 13:45.30.123456789 +02:00" can be stored in an {@code OffsetDateTime}.103* <p>104* {@code OffsetDateTime}, {@link java.time.ZonedDateTime} and {@link java.time.Instant} all store an instant105* on the time-line to nanosecond precision.106* {@code Instant} is the simplest, simply representing the instant.107* {@code OffsetDateTime} adds to the instant the offset from UTC/Greenwich, which allows108* the local date-time to be obtained.109* {@code ZonedDateTime} adds full time-zone rules.110* <p>111* It is intended that {@code ZonedDateTime} or {@code Instant} is used to model data112* in simpler applications. This class may be used when modeling date-time concepts in113* more detail, or when communicating to a database or in a network protocol.114*115* <p>116* This is a <a href="{@docRoot}/java/lang/doc-files/ValueBased.html">value-based</a>117* class; use of identity-sensitive operations (including reference equality118* ({@code ==}), identity hash code, or synchronization) on instances of119* {@code OffsetDateTime} may have unpredictable results and should be avoided.120* The {@code equals} method should be used for comparisons.121*122* @implSpec123* This class is immutable and thread-safe.124*125* @since 1.8126*/127public final class OffsetDateTime128implements Temporal, TemporalAdjuster, Comparable<OffsetDateTime>, Serializable {129130/**131* The minimum supported {@code OffsetDateTime}, '-999999999-01-01T00:00:00+18:00'.132* This is the local date-time of midnight at the start of the minimum date133* in the maximum offset (larger offsets are earlier on the time-line).134* This combines {@link LocalDateTime#MIN} and {@link ZoneOffset#MAX}.135* This could be used by an application as a "far past" date-time.136*/137public static final OffsetDateTime MIN = LocalDateTime.MIN.atOffset(ZoneOffset.MAX);138/**139* The maximum supported {@code OffsetDateTime}, '+999999999-12-31T23:59:59.999999999-18:00'.140* This is the local date-time just before midnight at the end of the maximum date141* in the minimum offset (larger negative offsets are later on the time-line).142* This combines {@link LocalDateTime#MAX} and {@link ZoneOffset#MIN}.143* This could be used by an application as a "far future" date-time.144*/145public static final OffsetDateTime MAX = LocalDateTime.MAX.atOffset(ZoneOffset.MIN);146147/**148* Gets a comparator that compares two {@code OffsetDateTime} instances149* based solely on the instant.150* <p>151* This method differs from the comparison in {@link #compareTo} in that it152* only compares the underlying instant.153*154* @return a comparator that compares in time-line order155*156* @see #isAfter157* @see #isBefore158* @see #isEqual159*/160public static Comparator<OffsetDateTime> timeLineOrder() {161return OffsetDateTime::compareInstant;162}163164/**165* Compares this {@code OffsetDateTime} to another date-time.166* The comparison is based on the instant.167*168* @param datetime1 the first date-time to compare, not null169* @param datetime2 the other date-time to compare to, not null170* @return the comparator value, negative if less, positive if greater171*/172private static int compareInstant(OffsetDateTime datetime1, OffsetDateTime datetime2) {173if (datetime1.getOffset().equals(datetime2.getOffset())) {174return datetime1.toLocalDateTime().compareTo(datetime2.toLocalDateTime());175}176int cmp = Long.compare(datetime1.toEpochSecond(), datetime2.toEpochSecond());177if (cmp == 0) {178cmp = datetime1.toLocalTime().getNano() - datetime2.toLocalTime().getNano();179}180return cmp;181}182183/**184* Serialization version.185*/186private static final long serialVersionUID = 2287754244819255394L;187188/**189* The local date-time.190*/191private final LocalDateTime dateTime;192/**193* The offset from UTC/Greenwich.194*/195private final ZoneOffset offset;196197//-----------------------------------------------------------------------198/**199* Obtains the current date-time from the system clock in the default time-zone.200* <p>201* This will query the {@link Clock#systemDefaultZone() system clock} in the default202* time-zone to obtain the current date-time.203* The offset will be calculated from the time-zone in the clock.204* <p>205* Using this method will prevent the ability to use an alternate clock for testing206* because the clock is hard-coded.207*208* @return the current date-time using the system clock, not null209*/210public static OffsetDateTime now() {211return now(Clock.systemDefaultZone());212}213214/**215* Obtains the current date-time from the system clock in the specified time-zone.216* <p>217* This will query the {@link Clock#system(ZoneId) system clock} to obtain the current date-time.218* Specifying the time-zone avoids dependence on the default time-zone.219* The offset will be calculated from the specified time-zone.220* <p>221* Using this method will prevent the ability to use an alternate clock for testing222* because the clock is hard-coded.223*224* @param zone the zone ID to use, not null225* @return the current date-time using the system clock, not null226*/227public static OffsetDateTime now(ZoneId zone) {228return now(Clock.system(zone));229}230231/**232* Obtains the current date-time from the specified clock.233* <p>234* This will query the specified clock to obtain the current date-time.235* The offset will be calculated from the time-zone in the clock.236* <p>237* Using this method allows the use of an alternate clock for testing.238* The alternate clock may be introduced using {@link Clock dependency injection}.239*240* @param clock the clock to use, not null241* @return the current date-time, not null242*/243public static OffsetDateTime now(Clock clock) {244Objects.requireNonNull(clock, "clock");245final Instant now = clock.instant(); // called once246return ofInstant(now, clock.getZone().getRules().getOffset(now));247}248249//-----------------------------------------------------------------------250/**251* Obtains an instance of {@code OffsetDateTime} from a date, time and offset.252* <p>253* This creates an offset date-time with the specified local date, time and offset.254*255* @param date the local date, not null256* @param time the local time, not null257* @param offset the zone offset, not null258* @return the offset date-time, not null259*/260public static OffsetDateTime of(LocalDate date, LocalTime time, ZoneOffset offset) {261LocalDateTime dt = LocalDateTime.of(date, time);262return new OffsetDateTime(dt, offset);263}264265/**266* Obtains an instance of {@code OffsetDateTime} from a date-time and offset.267* <p>268* This creates an offset date-time with the specified local date-time and offset.269*270* @param dateTime the local date-time, not null271* @param offset the zone offset, not null272* @return the offset date-time, not null273*/274public static OffsetDateTime of(LocalDateTime dateTime, ZoneOffset offset) {275return new OffsetDateTime(dateTime, offset);276}277278/**279* Obtains an instance of {@code OffsetDateTime} from a year, month, day,280* hour, minute, second, nanosecond and offset.281* <p>282* This creates an offset date-time with the seven specified fields.283* <p>284* This method exists primarily for writing test cases.285* Non test-code will typically use other methods to create an offset time.286* {@code LocalDateTime} has five additional convenience variants of the287* equivalent factory method taking fewer arguments.288* They are not provided here to reduce the footprint of the API.289*290* @param year the year to represent, from MIN_YEAR to MAX_YEAR291* @param month the month-of-year to represent, from 1 (January) to 12 (December)292* @param dayOfMonth the day-of-month to represent, from 1 to 31293* @param hour the hour-of-day to represent, from 0 to 23294* @param minute the minute-of-hour to represent, from 0 to 59295* @param second the second-of-minute to represent, from 0 to 59296* @param nanoOfSecond the nano-of-second to represent, from 0 to 999,999,999297* @param offset the zone offset, not null298* @return the offset date-time, not null299* @throws DateTimeException if the value of any field is out of range, or300* if the day-of-month is invalid for the month-year301*/302public static OffsetDateTime of(303int year, int month, int dayOfMonth,304int hour, int minute, int second, int nanoOfSecond, ZoneOffset offset) {305LocalDateTime dt = LocalDateTime.of(year, month, dayOfMonth, hour, minute, second, nanoOfSecond);306return new OffsetDateTime(dt, offset);307}308309//-----------------------------------------------------------------------310/**311* Obtains an instance of {@code OffsetDateTime} from an {@code Instant} and zone ID.312* <p>313* This creates an offset date-time with the same instant as that specified.314* Finding the offset from UTC/Greenwich is simple as there is only one valid315* offset for each instant.316*317* @param instant the instant to create the date-time from, not null318* @param zone the time-zone, which may be an offset, not null319* @return the offset date-time, not null320* @throws DateTimeException if the result exceeds the supported range321*/322public static OffsetDateTime ofInstant(Instant instant, ZoneId zone) {323Objects.requireNonNull(instant, "instant");324Objects.requireNonNull(zone, "zone");325ZoneRules rules = zone.getRules();326ZoneOffset offset = rules.getOffset(instant);327LocalDateTime ldt = LocalDateTime.ofEpochSecond(instant.getEpochSecond(), instant.getNano(), offset);328return new OffsetDateTime(ldt, offset);329}330331//-----------------------------------------------------------------------332/**333* Obtains an instance of {@code OffsetDateTime} from a temporal object.334* <p>335* This obtains an offset date-time based on the specified temporal.336* A {@code TemporalAccessor} represents an arbitrary set of date and time information,337* which this factory converts to an instance of {@code OffsetDateTime}.338* <p>339* The conversion will first obtain a {@code ZoneOffset} from the temporal object.340* It will then try to obtain a {@code LocalDateTime}, falling back to an {@code Instant} if necessary.341* The result will be the combination of {@code ZoneOffset} with either342* with {@code LocalDateTime} or {@code Instant}.343* Implementations are permitted to perform optimizations such as accessing344* those fields that are equivalent to the relevant objects.345* <p>346* This method matches the signature of the functional interface {@link TemporalQuery}347* allowing it to be used as a query via method reference, {@code OffsetDateTime::from}.348*349* @param temporal the temporal object to convert, not null350* @return the offset date-time, not null351* @throws DateTimeException if unable to convert to an {@code OffsetDateTime}352*/353public static OffsetDateTime from(TemporalAccessor temporal) {354if (temporal instanceof OffsetDateTime) {355return (OffsetDateTime) temporal;356}357try {358ZoneOffset offset = ZoneOffset.from(temporal);359LocalDate date = temporal.query(TemporalQueries.localDate());360LocalTime time = temporal.query(TemporalQueries.localTime());361if (date != null && time != null) {362return OffsetDateTime.of(date, time, offset);363} else {364Instant instant = Instant.from(temporal);365return OffsetDateTime.ofInstant(instant, offset);366}367} catch (DateTimeException ex) {368throw new DateTimeException("Unable to obtain OffsetDateTime from TemporalAccessor: " +369temporal + " of type " + temporal.getClass().getName(), ex);370}371}372373//-----------------------------------------------------------------------374/**375* Obtains an instance of {@code OffsetDateTime} from a text string376* such as {@code 2007-12-03T10:15:30+01:00}.377* <p>378* The string must represent a valid date-time and is parsed using379* {@link java.time.format.DateTimeFormatter#ISO_OFFSET_DATE_TIME}.380*381* @param text the text to parse such as "2007-12-03T10:15:30+01:00", not null382* @return the parsed offset date-time, not null383* @throws DateTimeParseException if the text cannot be parsed384*/385public static OffsetDateTime parse(CharSequence text) {386return parse(text, DateTimeFormatter.ISO_OFFSET_DATE_TIME);387}388389/**390* Obtains an instance of {@code OffsetDateTime} from a text string using a specific formatter.391* <p>392* The text is parsed using the formatter, returning a date-time.393*394* @param text the text to parse, not null395* @param formatter the formatter to use, not null396* @return the parsed offset date-time, not null397* @throws DateTimeParseException if the text cannot be parsed398*/399public static OffsetDateTime parse(CharSequence text, DateTimeFormatter formatter) {400Objects.requireNonNull(formatter, "formatter");401return formatter.parse(text, OffsetDateTime::from);402}403404//-----------------------------------------------------------------------405/**406* Constructor.407*408* @param dateTime the local date-time, not null409* @param offset the zone offset, not null410*/411private OffsetDateTime(LocalDateTime dateTime, ZoneOffset offset) {412this.dateTime = Objects.requireNonNull(dateTime, "dateTime");413this.offset = Objects.requireNonNull(offset, "offset");414}415416/**417* Returns a new date-time based on this one, returning {@code this} where possible.418*419* @param dateTime the date-time to create with, not null420* @param offset the zone offset to create with, not null421*/422private OffsetDateTime with(LocalDateTime dateTime, ZoneOffset offset) {423if (this.dateTime == dateTime && this.offset.equals(offset)) {424return this;425}426return new OffsetDateTime(dateTime, offset);427}428429//-----------------------------------------------------------------------430/**431* Checks if the specified field is supported.432* <p>433* This checks if this date-time can be queried for the specified field.434* If false, then calling the {@link #range(TemporalField) range},435* {@link #get(TemporalField) get} and {@link #with(TemporalField, long)}436* methods will throw an exception.437* <p>438* If the field is a {@link ChronoField} then the query is implemented here.439* The supported fields are:440* <ul>441* <li>{@code NANO_OF_SECOND}442* <li>{@code NANO_OF_DAY}443* <li>{@code MICRO_OF_SECOND}444* <li>{@code MICRO_OF_DAY}445* <li>{@code MILLI_OF_SECOND}446* <li>{@code MILLI_OF_DAY}447* <li>{@code SECOND_OF_MINUTE}448* <li>{@code SECOND_OF_DAY}449* <li>{@code MINUTE_OF_HOUR}450* <li>{@code MINUTE_OF_DAY}451* <li>{@code HOUR_OF_AMPM}452* <li>{@code CLOCK_HOUR_OF_AMPM}453* <li>{@code HOUR_OF_DAY}454* <li>{@code CLOCK_HOUR_OF_DAY}455* <li>{@code AMPM_OF_DAY}456* <li>{@code DAY_OF_WEEK}457* <li>{@code ALIGNED_DAY_OF_WEEK_IN_MONTH}458* <li>{@code ALIGNED_DAY_OF_WEEK_IN_YEAR}459* <li>{@code DAY_OF_MONTH}460* <li>{@code DAY_OF_YEAR}461* <li>{@code EPOCH_DAY}462* <li>{@code ALIGNED_WEEK_OF_MONTH}463* <li>{@code ALIGNED_WEEK_OF_YEAR}464* <li>{@code MONTH_OF_YEAR}465* <li>{@code PROLEPTIC_MONTH}466* <li>{@code YEAR_OF_ERA}467* <li>{@code YEAR}468* <li>{@code ERA}469* <li>{@code INSTANT_SECONDS}470* <li>{@code OFFSET_SECONDS}471* </ul>472* All other {@code ChronoField} instances will return false.473* <p>474* If the field is not a {@code ChronoField}, then the result of this method475* is obtained by invoking {@code TemporalField.isSupportedBy(TemporalAccessor)}476* passing {@code this} as the argument.477* Whether the field is supported is determined by the field.478*479* @param field the field to check, null returns false480* @return true if the field is supported on this date-time, false if not481*/482@Override483public boolean isSupported(TemporalField field) {484return field instanceof ChronoField || (field != null && field.isSupportedBy(this));485}486487/**488* Checks if the specified unit is supported.489* <p>490* This checks if the specified unit can be added to, or subtracted from, this date-time.491* If false, then calling the {@link #plus(long, TemporalUnit)} and492* {@link #minus(long, TemporalUnit) minus} methods will throw an exception.493* <p>494* If the unit is a {@link ChronoUnit} then the query is implemented here.495* The supported units are:496* <ul>497* <li>{@code NANOS}498* <li>{@code MICROS}499* <li>{@code MILLIS}500* <li>{@code SECONDS}501* <li>{@code MINUTES}502* <li>{@code HOURS}503* <li>{@code HALF_DAYS}504* <li>{@code DAYS}505* <li>{@code WEEKS}506* <li>{@code MONTHS}507* <li>{@code YEARS}508* <li>{@code DECADES}509* <li>{@code CENTURIES}510* <li>{@code MILLENNIA}511* <li>{@code ERAS}512* </ul>513* All other {@code ChronoUnit} instances will return false.514* <p>515* If the unit is not a {@code ChronoUnit}, then the result of this method516* is obtained by invoking {@code TemporalUnit.isSupportedBy(Temporal)}517* passing {@code this} as the argument.518* Whether the unit is supported is determined by the unit.519*520* @param unit the unit to check, null returns false521* @return true if the unit can be added/subtracted, false if not522*/523@Override // override for Javadoc524public boolean isSupported(TemporalUnit unit) {525if (unit instanceof ChronoUnit) {526return unit != FOREVER;527}528return unit != null && unit.isSupportedBy(this);529}530531//-----------------------------------------------------------------------532/**533* Gets the range of valid values for the specified field.534* <p>535* The range object expresses the minimum and maximum valid values for a field.536* This date-time is used to enhance the accuracy of the returned range.537* If it is not possible to return the range, because the field is not supported538* or for some other reason, an exception is thrown.539* <p>540* If the field is a {@link ChronoField} then the query is implemented here.541* The {@link #isSupported(TemporalField) supported fields} will return542* appropriate range instances.543* All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}.544* <p>545* If the field is not a {@code ChronoField}, then the result of this method546* is obtained by invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)}547* passing {@code this} as the argument.548* Whether the range can be obtained is determined by the field.549*550* @param field the field to query the range for, not null551* @return the range of valid values for the field, not null552* @throws DateTimeException if the range for the field cannot be obtained553* @throws UnsupportedTemporalTypeException if the field is not supported554*/555@Override556public ValueRange range(TemporalField field) {557if (field instanceof ChronoField) {558if (field == INSTANT_SECONDS || field == OFFSET_SECONDS) {559return field.range();560}561return dateTime.range(field);562}563return field.rangeRefinedBy(this);564}565566/**567* Gets the value of the specified field from this date-time as an {@code int}.568* <p>569* This queries this date-time for the value of the specified field.570* The returned value will always be within the valid range of values for the field.571* If it is not possible to return the value, because the field is not supported572* or for some other reason, an exception is thrown.573* <p>574* If the field is a {@link ChronoField} then the query is implemented here.575* The {@link #isSupported(TemporalField) supported fields} will return valid576* values based on this date-time, except {@code NANO_OF_DAY}, {@code MICRO_OF_DAY},577* {@code EPOCH_DAY}, {@code PROLEPTIC_MONTH} and {@code INSTANT_SECONDS} which are too578* large to fit in an {@code int} and throw a {@code DateTimeException}.579* All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}.580* <p>581* If the field is not a {@code ChronoField}, then the result of this method582* is obtained by invoking {@code TemporalField.getFrom(TemporalAccessor)}583* passing {@code this} as the argument. Whether the value can be obtained,584* and what the value represents, is determined by the field.585*586* @param field the field to get, not null587* @return the value for the field588* @throws DateTimeException if a value for the field cannot be obtained or589* the value is outside the range of valid values for the field590* @throws UnsupportedTemporalTypeException if the field is not supported or591* the range of values exceeds an {@code int}592* @throws ArithmeticException if numeric overflow occurs593*/594@Override595public int get(TemporalField field) {596if (field instanceof ChronoField) {597switch ((ChronoField) field) {598case INSTANT_SECONDS:599throw new UnsupportedTemporalTypeException("Invalid field 'InstantSeconds' for get() method, use getLong() instead");600case OFFSET_SECONDS:601return getOffset().getTotalSeconds();602}603return dateTime.get(field);604}605return Temporal.super.get(field);606}607608/**609* Gets the value of the specified field from this date-time as a {@code long}.610* <p>611* This queries this date-time for the value of the specified field.612* If it is not possible to return the value, because the field is not supported613* or for some other reason, an exception is thrown.614* <p>615* If the field is a {@link ChronoField} then the query is implemented here.616* The {@link #isSupported(TemporalField) supported fields} will return valid617* values based on this date-time.618* All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}.619* <p>620* If the field is not a {@code ChronoField}, then the result of this method621* is obtained by invoking {@code TemporalField.getFrom(TemporalAccessor)}622* passing {@code this} as the argument. Whether the value can be obtained,623* and what the value represents, is determined by the field.624*625* @param field the field to get, not null626* @return the value for the field627* @throws DateTimeException if a value for the field cannot be obtained628* @throws UnsupportedTemporalTypeException if the field is not supported629* @throws ArithmeticException if numeric overflow occurs630*/631@Override632public long getLong(TemporalField field) {633if (field instanceof ChronoField) {634switch ((ChronoField) field) {635case INSTANT_SECONDS: return toEpochSecond();636case OFFSET_SECONDS: return getOffset().getTotalSeconds();637}638return dateTime.getLong(field);639}640return field.getFrom(this);641}642643//-----------------------------------------------------------------------644/**645* Gets the zone offset, such as '+01:00'.646* <p>647* This is the offset of the local date-time from UTC/Greenwich.648*649* @return the zone offset, not null650*/651public ZoneOffset getOffset() {652return offset;653}654655/**656* Returns a copy of this {@code OffsetDateTime} with the specified offset ensuring657* that the result has the same local date-time.658* <p>659* This method returns an object with the same {@code LocalDateTime} and the specified {@code ZoneOffset}.660* No calculation is needed or performed.661* For example, if this time represents {@code 2007-12-03T10:30+02:00} and the offset specified is662* {@code +03:00}, then this method will return {@code 2007-12-03T10:30+03:00}.663* <p>664* To take into account the difference between the offsets, and adjust the time fields,665* use {@link #withOffsetSameInstant}.666* <p>667* This instance is immutable and unaffected by this method call.668*669* @param offset the zone offset to change to, not null670* @return an {@code OffsetDateTime} based on this date-time with the requested offset, not null671*/672public OffsetDateTime withOffsetSameLocal(ZoneOffset offset) {673return with(dateTime, offset);674}675676/**677* Returns a copy of this {@code OffsetDateTime} with the specified offset ensuring678* that the result is at the same instant.679* <p>680* This method returns an object with the specified {@code ZoneOffset} and a {@code LocalDateTime}681* adjusted by the difference between the two offsets.682* This will result in the old and new objects representing the same instant.683* This is useful for finding the local time in a different offset.684* For example, if this time represents {@code 2007-12-03T10:30+02:00} and the offset specified is685* {@code +03:00}, then this method will return {@code 2007-12-03T11:30+03:00}.686* <p>687* To change the offset without adjusting the local time use {@link #withOffsetSameLocal}.688* <p>689* This instance is immutable and unaffected by this method call.690*691* @param offset the zone offset to change to, not null692* @return an {@code OffsetDateTime} based on this date-time with the requested offset, not null693* @throws DateTimeException if the result exceeds the supported date range694*/695public OffsetDateTime withOffsetSameInstant(ZoneOffset offset) {696if (offset.equals(this.offset)) {697return this;698}699int difference = offset.getTotalSeconds() - this.offset.getTotalSeconds();700LocalDateTime adjusted = dateTime.plusSeconds(difference);701return new OffsetDateTime(adjusted, offset);702}703704//-----------------------------------------------------------------------705/**706* Gets the {@code LocalDateTime} part of this date-time.707* <p>708* This returns a {@code LocalDateTime} with the same year, month, day and time709* as this date-time.710*711* @return the local date-time part of this date-time, not null712*/713public LocalDateTime toLocalDateTime() {714return dateTime;715}716717//-----------------------------------------------------------------------718/**719* Gets the {@code LocalDate} part of this date-time.720* <p>721* This returns a {@code LocalDate} with the same year, month and day722* as this date-time.723*724* @return the date part of this date-time, not null725*/726public LocalDate toLocalDate() {727return dateTime.toLocalDate();728}729730/**731* Gets the year field.732* <p>733* This method returns the primitive {@code int} value for the year.734* <p>735* The year returned by this method is proleptic as per {@code get(YEAR)}.736* To obtain the year-of-era, use {@code get(YEAR_OF_ERA)}.737*738* @return the year, from MIN_YEAR to MAX_YEAR739*/740public int getYear() {741return dateTime.getYear();742}743744/**745* Gets the month-of-year field from 1 to 12.746* <p>747* This method returns the month as an {@code int} from 1 to 12.748* Application code is frequently clearer if the enum {@link Month}749* is used by calling {@link #getMonth()}.750*751* @return the month-of-year, from 1 to 12752* @see #getMonth()753*/754public int getMonthValue() {755return dateTime.getMonthValue();756}757758/**759* Gets the month-of-year field using the {@code Month} enum.760* <p>761* This method returns the enum {@link Month} for the month.762* This avoids confusion as to what {@code int} values mean.763* If you need access to the primitive {@code int} value then the enum764* provides the {@link Month#getValue() int value}.765*766* @return the month-of-year, not null767* @see #getMonthValue()768*/769public Month getMonth() {770return dateTime.getMonth();771}772773/**774* Gets the day-of-month field.775* <p>776* This method returns the primitive {@code int} value for the day-of-month.777*778* @return the day-of-month, from 1 to 31779*/780public int getDayOfMonth() {781return dateTime.getDayOfMonth();782}783784/**785* Gets the day-of-year field.786* <p>787* This method returns the primitive {@code int} value for the day-of-year.788*789* @return the day-of-year, from 1 to 365, or 366 in a leap year790*/791public int getDayOfYear() {792return dateTime.getDayOfYear();793}794795/**796* Gets the day-of-week field, which is an enum {@code DayOfWeek}.797* <p>798* This method returns the enum {@link DayOfWeek} for the day-of-week.799* This avoids confusion as to what {@code int} values mean.800* If you need access to the primitive {@code int} value then the enum801* provides the {@link DayOfWeek#getValue() int value}.802* <p>803* Additional information can be obtained from the {@code DayOfWeek}.804* This includes textual names of the values.805*806* @return the day-of-week, not null807*/808public DayOfWeek getDayOfWeek() {809return dateTime.getDayOfWeek();810}811812//-----------------------------------------------------------------------813/**814* Gets the {@code LocalTime} part of this date-time.815* <p>816* This returns a {@code LocalTime} with the same hour, minute, second and817* nanosecond as this date-time.818*819* @return the time part of this date-time, not null820*/821public LocalTime toLocalTime() {822return dateTime.toLocalTime();823}824825/**826* Gets the hour-of-day field.827*828* @return the hour-of-day, from 0 to 23829*/830public int getHour() {831return dateTime.getHour();832}833834/**835* Gets the minute-of-hour field.836*837* @return the minute-of-hour, from 0 to 59838*/839public int getMinute() {840return dateTime.getMinute();841}842843/**844* Gets the second-of-minute field.845*846* @return the second-of-minute, from 0 to 59847*/848public int getSecond() {849return dateTime.getSecond();850}851852/**853* Gets the nano-of-second field.854*855* @return the nano-of-second, from 0 to 999,999,999856*/857public int getNano() {858return dateTime.getNano();859}860861//-----------------------------------------------------------------------862/**863* Returns an adjusted copy of this date-time.864* <p>865* This returns an {@code OffsetDateTime}, based on this one, with the date-time adjusted.866* The adjustment takes place using the specified adjuster strategy object.867* Read the documentation of the adjuster to understand what adjustment will be made.868* <p>869* A simple adjuster might simply set the one of the fields, such as the year field.870* A more complex adjuster might set the date to the last day of the month.871* A selection of common adjustments is provided in872* {@link java.time.temporal.TemporalAdjusters TemporalAdjusters}.873* These include finding the "last day of the month" and "next Wednesday".874* Key date-time classes also implement the {@code TemporalAdjuster} interface,875* such as {@link Month} and {@link java.time.MonthDay MonthDay}.876* The adjuster is responsible for handling special cases, such as the varying877* lengths of month and leap years.878* <p>879* For example this code returns a date on the last day of July:880* <pre>881* import static java.time.Month.*;882* import static java.time.temporal.TemporalAdjusters.*;883*884* result = offsetDateTime.with(JULY).with(lastDayOfMonth());885* </pre>886* <p>887* The classes {@link LocalDate}, {@link LocalTime} and {@link ZoneOffset} implement888* {@code TemporalAdjuster}, thus this method can be used to change the date, time or offset:889* <pre>890* result = offsetDateTime.with(date);891* result = offsetDateTime.with(time);892* result = offsetDateTime.with(offset);893* </pre>894* <p>895* The result of this method is obtained by invoking the896* {@link TemporalAdjuster#adjustInto(Temporal)} method on the897* specified adjuster passing {@code this} as the argument.898* <p>899* This instance is immutable and unaffected by this method call.900*901* @param adjuster the adjuster to use, not null902* @return an {@code OffsetDateTime} based on {@code this} with the adjustment made, not null903* @throws DateTimeException if the adjustment cannot be made904* @throws ArithmeticException if numeric overflow occurs905*/906@Override907public OffsetDateTime with(TemporalAdjuster adjuster) {908// optimizations909if (adjuster instanceof LocalDate || adjuster instanceof LocalTime || adjuster instanceof LocalDateTime) {910return with(dateTime.with(adjuster), offset);911} else if (adjuster instanceof Instant) {912return ofInstant((Instant) adjuster, offset);913} else if (adjuster instanceof ZoneOffset) {914return with(dateTime, (ZoneOffset) adjuster);915} else if (adjuster instanceof OffsetDateTime) {916return (OffsetDateTime) adjuster;917}918return (OffsetDateTime) adjuster.adjustInto(this);919}920921/**922* Returns a copy of this date-time with the specified field set to a new value.923* <p>924* This returns an {@code OffsetDateTime}, based on this one, with the value925* for the specified field changed.926* This can be used to change any supported field, such as the year, month or day-of-month.927* If it is not possible to set the value, because the field is not supported or for928* some other reason, an exception is thrown.929* <p>930* In some cases, changing the specified field can cause the resulting date-time to become invalid,931* such as changing the month from 31st January to February would make the day-of-month invalid.932* In cases like this, the field is responsible for resolving the date. Typically it will choose933* the previous valid date, which would be the last valid day of February in this example.934* <p>935* If the field is a {@link ChronoField} then the adjustment is implemented here.936* <p>937* The {@code INSTANT_SECONDS} field will return a date-time with the specified instant.938* The offset and nano-of-second are unchanged.939* If the new instant value is outside the valid range then a {@code DateTimeException} will be thrown.940* <p>941* The {@code OFFSET_SECONDS} field will return a date-time with the specified offset.942* The local date-time is unaltered. If the new offset value is outside the valid range943* then a {@code DateTimeException} will be thrown.944* <p>945* The other {@link #isSupported(TemporalField) supported fields} will behave as per946* the matching method on {@link LocalDateTime#with(TemporalField, long) LocalDateTime}.947* In this case, the offset is not part of the calculation and will be unchanged.948* <p>949* All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}.950* <p>951* If the field is not a {@code ChronoField}, then the result of this method952* is obtained by invoking {@code TemporalField.adjustInto(Temporal, long)}953* passing {@code this} as the argument. In this case, the field determines954* whether and how to adjust the instant.955* <p>956* This instance is immutable and unaffected by this method call.957*958* @param field the field to set in the result, not null959* @param newValue the new value of the field in the result960* @return an {@code OffsetDateTime} based on {@code this} with the specified field set, not null961* @throws DateTimeException if the field cannot be set962* @throws UnsupportedTemporalTypeException if the field is not supported963* @throws ArithmeticException if numeric overflow occurs964*/965@Override966public OffsetDateTime with(TemporalField field, long newValue) {967if (field instanceof ChronoField) {968ChronoField f = (ChronoField) field;969switch (f) {970case INSTANT_SECONDS: return ofInstant(Instant.ofEpochSecond(newValue, getNano()), offset);971case OFFSET_SECONDS: {972return with(dateTime, ZoneOffset.ofTotalSeconds(f.checkValidIntValue(newValue)));973}974}975return with(dateTime.with(field, newValue), offset);976}977return field.adjustInto(this, newValue);978}979980//-----------------------------------------------------------------------981/**982* Returns a copy of this {@code OffsetDateTime} with the year altered.983* <p>984* The time and offset do not affect the calculation and will be the same in the result.985* If the day-of-month is invalid for the year, it will be changed to the last valid day of the month.986* <p>987* This instance is immutable and unaffected by this method call.988*989* @param year the year to set in the result, from MIN_YEAR to MAX_YEAR990* @return an {@code OffsetDateTime} based on this date-time with the requested year, not null991* @throws DateTimeException if the year value is invalid992*/993public OffsetDateTime withYear(int year) {994return with(dateTime.withYear(year), offset);995}996997/**998* Returns a copy of this {@code OffsetDateTime} with the month-of-year altered.999* <p>1000* The time and offset do not affect the calculation and will be the same in the result.1001* If the day-of-month is invalid for the year, it will be changed to the last valid day of the month.1002* <p>1003* This instance is immutable and unaffected by this method call.1004*1005* @param month the month-of-year to set in the result, from 1 (January) to 12 (December)1006* @return an {@code OffsetDateTime} based on this date-time with the requested month, not null1007* @throws DateTimeException if the month-of-year value is invalid1008*/1009public OffsetDateTime withMonth(int month) {1010return with(dateTime.withMonth(month), offset);1011}10121013/**1014* Returns a copy of this {@code OffsetDateTime} with the day-of-month altered.1015* <p>1016* If the resulting {@code OffsetDateTime} is invalid, an exception is thrown.1017* The time and offset do not affect the calculation and will be the same in the result.1018* <p>1019* This instance is immutable and unaffected by this method call.1020*1021* @param dayOfMonth the day-of-month to set in the result, from 1 to 28-311022* @return an {@code OffsetDateTime} based on this date-time with the requested day, not null1023* @throws DateTimeException if the day-of-month value is invalid,1024* or if the day-of-month is invalid for the month-year1025*/1026public OffsetDateTime withDayOfMonth(int dayOfMonth) {1027return with(dateTime.withDayOfMonth(dayOfMonth), offset);1028}10291030/**1031* Returns a copy of this {@code OffsetDateTime} with the day-of-year altered.1032* <p>1033* The time and offset do not affect the calculation and will be the same in the result.1034* If the resulting {@code OffsetDateTime} is invalid, an exception is thrown.1035* <p>1036* This instance is immutable and unaffected by this method call.1037*1038* @param dayOfYear the day-of-year to set in the result, from 1 to 365-3661039* @return an {@code OffsetDateTime} based on this date with the requested day, not null1040* @throws DateTimeException if the day-of-year value is invalid,1041* or if the day-of-year is invalid for the year1042*/1043public OffsetDateTime withDayOfYear(int dayOfYear) {1044return with(dateTime.withDayOfYear(dayOfYear), offset);1045}10461047//-----------------------------------------------------------------------1048/**1049* Returns a copy of this {@code OffsetDateTime} with the hour-of-day altered.1050* <p>1051* The date and offset do not affect the calculation and will be the same in the result.1052* <p>1053* This instance is immutable and unaffected by this method call.1054*1055* @param hour the hour-of-day to set in the result, from 0 to 231056* @return an {@code OffsetDateTime} based on this date-time with the requested hour, not null1057* @throws DateTimeException if the hour value is invalid1058*/1059public OffsetDateTime withHour(int hour) {1060return with(dateTime.withHour(hour), offset);1061}10621063/**1064* Returns a copy of this {@code OffsetDateTime} with the minute-of-hour altered.1065* <p>1066* The date and offset do not affect the calculation and will be the same in the result.1067* <p>1068* This instance is immutable and unaffected by this method call.1069*1070* @param minute the minute-of-hour to set in the result, from 0 to 591071* @return an {@code OffsetDateTime} based on this date-time with the requested minute, not null1072* @throws DateTimeException if the minute value is invalid1073*/1074public OffsetDateTime withMinute(int minute) {1075return with(dateTime.withMinute(minute), offset);1076}10771078/**1079* Returns a copy of this {@code OffsetDateTime} with the second-of-minute altered.1080* <p>1081* The date and offset do not affect the calculation and will be the same in the result.1082* <p>1083* This instance is immutable and unaffected by this method call.1084*1085* @param second the second-of-minute to set in the result, from 0 to 591086* @return an {@code OffsetDateTime} based on this date-time with the requested second, not null1087* @throws DateTimeException if the second value is invalid1088*/1089public OffsetDateTime withSecond(int second) {1090return with(dateTime.withSecond(second), offset);1091}10921093/**1094* Returns a copy of this {@code OffsetDateTime} with the nano-of-second altered.1095* <p>1096* The date and offset do not affect the calculation and will be the same in the result.1097* <p>1098* This instance is immutable and unaffected by this method call.1099*1100* @param nanoOfSecond the nano-of-second to set in the result, from 0 to 999,999,9991101* @return an {@code OffsetDateTime} based on this date-time with the requested nanosecond, not null1102* @throws DateTimeException if the nano value is invalid1103*/1104public OffsetDateTime withNano(int nanoOfSecond) {1105return with(dateTime.withNano(nanoOfSecond), offset);1106}11071108//-----------------------------------------------------------------------1109/**1110* Returns a copy of this {@code OffsetDateTime} with the time truncated.1111* <p>1112* Truncation returns a copy of the original date-time with fields1113* smaller than the specified unit set to zero.1114* For example, truncating with the {@link ChronoUnit#MINUTES minutes} unit1115* will set the second-of-minute and nano-of-second field to zero.1116* <p>1117* The unit must have a {@linkplain TemporalUnit#getDuration() duration}1118* that divides into the length of a standard day without remainder.1119* This includes all supplied time units on {@link ChronoUnit} and1120* {@link ChronoUnit#DAYS DAYS}. Other units throw an exception.1121* <p>1122* The offset does not affect the calculation and will be the same in the result.1123* <p>1124* This instance is immutable and unaffected by this method call.1125*1126* @param unit the unit to truncate to, not null1127* @return an {@code OffsetDateTime} based on this date-time with the time truncated, not null1128* @throws DateTimeException if unable to truncate1129* @throws UnsupportedTemporalTypeException if the unit is not supported1130*/1131public OffsetDateTime truncatedTo(TemporalUnit unit) {1132return with(dateTime.truncatedTo(unit), offset);1133}11341135//-----------------------------------------------------------------------1136/**1137* Returns a copy of this date-time with the specified amount added.1138* <p>1139* This returns an {@code OffsetDateTime}, based on this one, with the specified amount added.1140* The amount is typically {@link Period} or {@link Duration} but may be1141* any other type implementing the {@link TemporalAmount} interface.1142* <p>1143* The calculation is delegated to the amount object by calling1144* {@link TemporalAmount#addTo(Temporal)}. The amount implementation is free1145* to implement the addition in any way it wishes, however it typically1146* calls back to {@link #plus(long, TemporalUnit)}. Consult the documentation1147* of the amount implementation to determine if it can be successfully added.1148* <p>1149* This instance is immutable and unaffected by this method call.1150*1151* @param amountToAdd the amount to add, not null1152* @return an {@code OffsetDateTime} based on this date-time with the addition made, not null1153* @throws DateTimeException if the addition cannot be made1154* @throws ArithmeticException if numeric overflow occurs1155*/1156@Override1157public OffsetDateTime plus(TemporalAmount amountToAdd) {1158return (OffsetDateTime) amountToAdd.addTo(this);1159}11601161/**1162* Returns a copy of this date-time with the specified amount added.1163* <p>1164* This returns an {@code OffsetDateTime}, based on this one, with the amount1165* in terms of the unit added. If it is not possible to add the amount, because the1166* unit is not supported or for some other reason, an exception is thrown.1167* <p>1168* If the field is a {@link ChronoUnit} then the addition is implemented by1169* {@link LocalDateTime#plus(long, TemporalUnit)}.1170* The offset is not part of the calculation and will be unchanged in the result.1171* <p>1172* If the field is not a {@code ChronoUnit}, then the result of this method1173* is obtained by invoking {@code TemporalUnit.addTo(Temporal, long)}1174* passing {@code this} as the argument. In this case, the unit determines1175* whether and how to perform the addition.1176* <p>1177* This instance is immutable and unaffected by this method call.1178*1179* @param amountToAdd the amount of the unit to add to the result, may be negative1180* @param unit the unit of the amount to add, not null1181* @return an {@code OffsetDateTime} based on this date-time with the specified amount added, not null1182* @throws DateTimeException if the addition cannot be made1183* @throws UnsupportedTemporalTypeException if the unit is not supported1184* @throws ArithmeticException if numeric overflow occurs1185*/1186@Override1187public OffsetDateTime plus(long amountToAdd, TemporalUnit unit) {1188if (unit instanceof ChronoUnit) {1189return with(dateTime.plus(amountToAdd, unit), offset);1190}1191return unit.addTo(this, amountToAdd);1192}11931194//-----------------------------------------------------------------------1195/**1196* Returns a copy of this {@code OffsetDateTime} with the specified number of years added.1197* <p>1198* This method adds the specified amount to the years field in three steps:1199* <ol>1200* <li>Add the input years to the year field</li>1201* <li>Check if the resulting date would be invalid</li>1202* <li>Adjust the day-of-month to the last valid day if necessary</li>1203* </ol>1204* <p>1205* For example, 2008-02-29 (leap year) plus one year would result in the1206* invalid date 2009-02-29 (standard year). Instead of returning an invalid1207* result, the last valid day of the month, 2009-02-28, is selected instead.1208* <p>1209* This instance is immutable and unaffected by this method call.1210*1211* @param years the years to add, may be negative1212* @return an {@code OffsetDateTime} based on this date-time with the years added, not null1213* @throws DateTimeException if the result exceeds the supported date range1214*/1215public OffsetDateTime plusYears(long years) {1216return with(dateTime.plusYears(years), offset);1217}12181219/**1220* Returns a copy of this {@code OffsetDateTime} with the specified number of months added.1221* <p>1222* This method adds the specified amount to the months field in three steps:1223* <ol>1224* <li>Add the input months to the month-of-year field</li>1225* <li>Check if the resulting date would be invalid</li>1226* <li>Adjust the day-of-month to the last valid day if necessary</li>1227* </ol>1228* <p>1229* For example, 2007-03-31 plus one month would result in the invalid date1230* 2007-04-31. Instead of returning an invalid result, the last valid day1231* of the month, 2007-04-30, is selected instead.1232* <p>1233* This instance is immutable and unaffected by this method call.1234*1235* @param months the months to add, may be negative1236* @return an {@code OffsetDateTime} based on this date-time with the months added, not null1237* @throws DateTimeException if the result exceeds the supported date range1238*/1239public OffsetDateTime plusMonths(long months) {1240return with(dateTime.plusMonths(months), offset);1241}12421243/**1244* Returns a copy of this OffsetDateTime with the specified number of weeks added.1245* <p>1246* This method adds the specified amount in weeks to the days field incrementing1247* the month and year fields as necessary to ensure the result remains valid.1248* The result is only invalid if the maximum/minimum year is exceeded.1249* <p>1250* For example, 2008-12-31 plus one week would result in 2009-01-07.1251* <p>1252* This instance is immutable and unaffected by this method call.1253*1254* @param weeks the weeks to add, may be negative1255* @return an {@code OffsetDateTime} based on this date-time with the weeks added, not null1256* @throws DateTimeException if the result exceeds the supported date range1257*/1258public OffsetDateTime plusWeeks(long weeks) {1259return with(dateTime.plusWeeks(weeks), offset);1260}12611262/**1263* Returns a copy of this OffsetDateTime with the specified number of days added.1264* <p>1265* This method adds the specified amount to the days field incrementing the1266* month and year fields as necessary to ensure the result remains valid.1267* The result is only invalid if the maximum/minimum year is exceeded.1268* <p>1269* For example, 2008-12-31 plus one day would result in 2009-01-01.1270* <p>1271* This instance is immutable and unaffected by this method call.1272*1273* @param days the days to add, may be negative1274* @return an {@code OffsetDateTime} based on this date-time with the days added, not null1275* @throws DateTimeException if the result exceeds the supported date range1276*/1277public OffsetDateTime plusDays(long days) {1278return with(dateTime.plusDays(days), offset);1279}12801281/**1282* Returns a copy of this {@code OffsetDateTime} with the specified number of hours added.1283* <p>1284* This instance is immutable and unaffected by this method call.1285*1286* @param hours the hours to add, may be negative1287* @return an {@code OffsetDateTime} based on this date-time with the hours added, not null1288* @throws DateTimeException if the result exceeds the supported date range1289*/1290public OffsetDateTime plusHours(long hours) {1291return with(dateTime.plusHours(hours), offset);1292}12931294/**1295* Returns a copy of this {@code OffsetDateTime} with the specified number of minutes added.1296* <p>1297* This instance is immutable and unaffected by this method call.1298*1299* @param minutes the minutes to add, may be negative1300* @return an {@code OffsetDateTime} based on this date-time with the minutes added, not null1301* @throws DateTimeException if the result exceeds the supported date range1302*/1303public OffsetDateTime plusMinutes(long minutes) {1304return with(dateTime.plusMinutes(minutes), offset);1305}13061307/**1308* Returns a copy of this {@code OffsetDateTime} with the specified number of seconds added.1309* <p>1310* This instance is immutable and unaffected by this method call.1311*1312* @param seconds the seconds to add, may be negative1313* @return an {@code OffsetDateTime} based on this date-time with the seconds added, not null1314* @throws DateTimeException if the result exceeds the supported date range1315*/1316public OffsetDateTime plusSeconds(long seconds) {1317return with(dateTime.plusSeconds(seconds), offset);1318}13191320/**1321* Returns a copy of this {@code OffsetDateTime} with the specified number of nanoseconds added.1322* <p>1323* This instance is immutable and unaffected by this method call.1324*1325* @param nanos the nanos to add, may be negative1326* @return an {@code OffsetDateTime} based on this date-time with the nanoseconds added, not null1327* @throws DateTimeException if the unit cannot be added to this type1328*/1329public OffsetDateTime plusNanos(long nanos) {1330return with(dateTime.plusNanos(nanos), offset);1331}13321333//-----------------------------------------------------------------------1334/**1335* Returns a copy of this date-time with the specified amount subtracted.1336* <p>1337* This returns an {@code OffsetDateTime}, based on this one, with the specified amount subtracted.1338* The amount is typically {@link Period} or {@link Duration} but may be1339* any other type implementing the {@link TemporalAmount} interface.1340* <p>1341* The calculation is delegated to the amount object by calling1342* {@link TemporalAmount#subtractFrom(Temporal)}. The amount implementation is free1343* to implement the subtraction in any way it wishes, however it typically1344* calls back to {@link #minus(long, TemporalUnit)}. Consult the documentation1345* of the amount implementation to determine if it can be successfully subtracted.1346* <p>1347* This instance is immutable and unaffected by this method call.1348*1349* @param amountToSubtract the amount to subtract, not null1350* @return an {@code OffsetDateTime} based on this date-time with the subtraction made, not null1351* @throws DateTimeException if the subtraction cannot be made1352* @throws ArithmeticException if numeric overflow occurs1353*/1354@Override1355public OffsetDateTime minus(TemporalAmount amountToSubtract) {1356return (OffsetDateTime) amountToSubtract.subtractFrom(this);1357}13581359/**1360* Returns a copy of this date-time with the specified amount subtracted.1361* <p>1362* This returns an {@code OffsetDateTime}, based on this one, with the amount1363* in terms of the unit subtracted. If it is not possible to subtract the amount,1364* because the unit is not supported or for some other reason, an exception is thrown.1365* <p>1366* This method is equivalent to {@link #plus(long, TemporalUnit)} with the amount negated.1367* See that method for a full description of how addition, and thus subtraction, works.1368* <p>1369* This instance is immutable and unaffected by this method call.1370*1371* @param amountToSubtract the amount of the unit to subtract from the result, may be negative1372* @param unit the unit of the amount to subtract, not null1373* @return an {@code OffsetDateTime} based on this date-time with the specified amount subtracted, not null1374* @throws DateTimeException if the subtraction cannot be made1375* @throws UnsupportedTemporalTypeException if the unit is not supported1376* @throws ArithmeticException if numeric overflow occurs1377*/1378@Override1379public OffsetDateTime minus(long amountToSubtract, TemporalUnit unit) {1380return (amountToSubtract == Long.MIN_VALUE ? plus(Long.MAX_VALUE, unit).plus(1, unit) : plus(-amountToSubtract, unit));1381}13821383//-----------------------------------------------------------------------1384/**1385* Returns a copy of this {@code OffsetDateTime} with the specified number of years subtracted.1386* <p>1387* This method subtracts the specified amount from the years field in three steps:1388* <ol>1389* <li>Subtract the input years from the year field</li>1390* <li>Check if the resulting date would be invalid</li>1391* <li>Adjust the day-of-month to the last valid day if necessary</li>1392* </ol>1393* <p>1394* For example, 2008-02-29 (leap year) minus one year would result in the1395* invalid date 2009-02-29 (standard year). Instead of returning an invalid1396* result, the last valid day of the month, 2009-02-28, is selected instead.1397* <p>1398* This instance is immutable and unaffected by this method call.1399*1400* @param years the years to subtract, may be negative1401* @return an {@code OffsetDateTime} based on this date-time with the years subtracted, not null1402* @throws DateTimeException if the result exceeds the supported date range1403*/1404public OffsetDateTime minusYears(long years) {1405return (years == Long.MIN_VALUE ? plusYears(Long.MAX_VALUE).plusYears(1) : plusYears(-years));1406}14071408/**1409* Returns a copy of this {@code OffsetDateTime} with the specified number of months subtracted.1410* <p>1411* This method subtracts the specified amount from the months field in three steps:1412* <ol>1413* <li>Subtract the input months from the month-of-year field</li>1414* <li>Check if the resulting date would be invalid</li>1415* <li>Adjust the day-of-month to the last valid day if necessary</li>1416* </ol>1417* <p>1418* For example, 2007-03-31 minus one month would result in the invalid date1419* 2007-04-31. Instead of returning an invalid result, the last valid day1420* of the month, 2007-04-30, is selected instead.1421* <p>1422* This instance is immutable and unaffected by this method call.1423*1424* @param months the months to subtract, may be negative1425* @return an {@code OffsetDateTime} based on this date-time with the months subtracted, not null1426* @throws DateTimeException if the result exceeds the supported date range1427*/1428public OffsetDateTime minusMonths(long months) {1429return (months == Long.MIN_VALUE ? plusMonths(Long.MAX_VALUE).plusMonths(1) : plusMonths(-months));1430}14311432/**1433* Returns a copy of this {@code OffsetDateTime} with the specified number of weeks subtracted.1434* <p>1435* This method subtracts the specified amount in weeks from the days field decrementing1436* the month and year fields as necessary to ensure the result remains valid.1437* The result is only invalid if the maximum/minimum year is exceeded.1438* <p>1439* For example, 2008-12-31 minus one week would result in 2009-01-07.1440* <p>1441* This instance is immutable and unaffected by this method call.1442*1443* @param weeks the weeks to subtract, may be negative1444* @return an {@code OffsetDateTime} based on this date-time with the weeks subtracted, not null1445* @throws DateTimeException if the result exceeds the supported date range1446*/1447public OffsetDateTime minusWeeks(long weeks) {1448return (weeks == Long.MIN_VALUE ? plusWeeks(Long.MAX_VALUE).plusWeeks(1) : plusWeeks(-weeks));1449}14501451/**1452* Returns a copy of this {@code OffsetDateTime} with the specified number of days subtracted.1453* <p>1454* This method subtracts the specified amount from the days field decrementing the1455* month and year fields as necessary to ensure the result remains valid.1456* The result is only invalid if the maximum/minimum year is exceeded.1457* <p>1458* For example, 2008-12-31 minus one day would result in 2009-01-01.1459* <p>1460* This instance is immutable and unaffected by this method call.1461*1462* @param days the days to subtract, may be negative1463* @return an {@code OffsetDateTime} based on this date-time with the days subtracted, not null1464* @throws DateTimeException if the result exceeds the supported date range1465*/1466public OffsetDateTime minusDays(long days) {1467return (days == Long.MIN_VALUE ? plusDays(Long.MAX_VALUE).plusDays(1) : plusDays(-days));1468}14691470/**1471* Returns a copy of this {@code OffsetDateTime} with the specified number of hours subtracted.1472* <p>1473* This instance is immutable and unaffected by this method call.1474*1475* @param hours the hours to subtract, may be negative1476* @return an {@code OffsetDateTime} based on this date-time with the hours subtracted, not null1477* @throws DateTimeException if the result exceeds the supported date range1478*/1479public OffsetDateTime minusHours(long hours) {1480return (hours == Long.MIN_VALUE ? plusHours(Long.MAX_VALUE).plusHours(1) : plusHours(-hours));1481}14821483/**1484* Returns a copy of this {@code OffsetDateTime} with the specified number of minutes subtracted.1485* <p>1486* This instance is immutable and unaffected by this method call.1487*1488* @param minutes the minutes to subtract, may be negative1489* @return an {@code OffsetDateTime} based on this date-time with the minutes subtracted, not null1490* @throws DateTimeException if the result exceeds the supported date range1491*/1492public OffsetDateTime minusMinutes(long minutes) {1493return (minutes == Long.MIN_VALUE ? plusMinutes(Long.MAX_VALUE).plusMinutes(1) : plusMinutes(-minutes));1494}14951496/**1497* Returns a copy of this {@code OffsetDateTime} with the specified number of seconds subtracted.1498* <p>1499* This instance is immutable and unaffected by this method call.1500*1501* @param seconds the seconds to subtract, may be negative1502* @return an {@code OffsetDateTime} based on this date-time with the seconds subtracted, not null1503* @throws DateTimeException if the result exceeds the supported date range1504*/1505public OffsetDateTime minusSeconds(long seconds) {1506return (seconds == Long.MIN_VALUE ? plusSeconds(Long.MAX_VALUE).plusSeconds(1) : plusSeconds(-seconds));1507}15081509/**1510* Returns a copy of this {@code OffsetDateTime} with the specified number of nanoseconds subtracted.1511* <p>1512* This instance is immutable and unaffected by this method call.1513*1514* @param nanos the nanos to subtract, may be negative1515* @return an {@code OffsetDateTime} based on this date-time with the nanoseconds subtracted, not null1516* @throws DateTimeException if the result exceeds the supported date range1517*/1518public OffsetDateTime minusNanos(long nanos) {1519return (nanos == Long.MIN_VALUE ? plusNanos(Long.MAX_VALUE).plusNanos(1) : plusNanos(-nanos));1520}15211522//-----------------------------------------------------------------------1523/**1524* Queries this date-time using the specified query.1525* <p>1526* This queries this date-time using the specified query strategy object.1527* The {@code TemporalQuery} object defines the logic to be used to1528* obtain the result. Read the documentation of the query to understand1529* what the result of this method will be.1530* <p>1531* The result of this method is obtained by invoking the1532* {@link TemporalQuery#queryFrom(TemporalAccessor)} method on the1533* specified query passing {@code this} as the argument.1534*1535* @param <R> the type of the result1536* @param query the query to invoke, not null1537* @return the query result, null may be returned (defined by the query)1538* @throws DateTimeException if unable to query (defined by the query)1539* @throws ArithmeticException if numeric overflow occurs (defined by the query)1540*/1541@SuppressWarnings("unchecked")1542@Override1543public <R> R query(TemporalQuery<R> query) {1544if (query == TemporalQueries.offset() || query == TemporalQueries.zone()) {1545return (R) getOffset();1546} else if (query == TemporalQueries.zoneId()) {1547return null;1548} else if (query == TemporalQueries.localDate()) {1549return (R) toLocalDate();1550} else if (query == TemporalQueries.localTime()) {1551return (R) toLocalTime();1552} else if (query == TemporalQueries.chronology()) {1553return (R) IsoChronology.INSTANCE;1554} else if (query == TemporalQueries.precision()) {1555return (R) NANOS;1556}1557// inline TemporalAccessor.super.query(query) as an optimization1558// non-JDK classes are not permitted to make this optimization1559return query.queryFrom(this);1560}15611562/**1563* Adjusts the specified temporal object to have the same offset, date1564* and time as this object.1565* <p>1566* This returns a temporal object of the same observable type as the input1567* with the offset, date and time changed to be the same as this.1568* <p>1569* The adjustment is equivalent to using {@link Temporal#with(TemporalField, long)}1570* three times, passing {@link ChronoField#EPOCH_DAY},1571* {@link ChronoField#NANO_OF_DAY} and {@link ChronoField#OFFSET_SECONDS} as the fields.1572* <p>1573* In most cases, it is clearer to reverse the calling pattern by using1574* {@link Temporal#with(TemporalAdjuster)}:1575* <pre>1576* // these two lines are equivalent, but the second approach is recommended1577* temporal = thisOffsetDateTime.adjustInto(temporal);1578* temporal = temporal.with(thisOffsetDateTime);1579* </pre>1580* <p>1581* This instance is immutable and unaffected by this method call.1582*1583* @param temporal the target object to be adjusted, not null1584* @return the adjusted object, not null1585* @throws DateTimeException if unable to make the adjustment1586* @throws ArithmeticException if numeric overflow occurs1587*/1588@Override1589public Temporal adjustInto(Temporal temporal) {1590// OffsetDateTime is treated as three separate fields, not an instant1591// this produces the most consistent set of results overall1592// the offset is set after the date and time, as it is typically a small1593// tweak to the result, with ZonedDateTime frequently ignoring the offset1594return temporal1595.with(EPOCH_DAY, toLocalDate().toEpochDay())1596.with(NANO_OF_DAY, toLocalTime().toNanoOfDay())1597.with(OFFSET_SECONDS, getOffset().getTotalSeconds());1598}15991600/**1601* Calculates the amount of time until another date-time in terms of the specified unit.1602* <p>1603* This calculates the amount of time between two {@code OffsetDateTime}1604* objects in terms of a single {@code TemporalUnit}.1605* The start and end points are {@code this} and the specified date-time.1606* The result will be negative if the end is before the start.1607* For example, the amount in days between two date-times can be calculated1608* using {@code startDateTime.until(endDateTime, DAYS)}.1609* <p>1610* The {@code Temporal} passed to this method is converted to a1611* {@code OffsetDateTime} using {@link #from(TemporalAccessor)}.1612* If the offset differs between the two date-times, the specified1613* end date-time is normalized to have the same offset as this date-time.1614* <p>1615* The calculation returns a whole number, representing the number of1616* complete units between the two date-times.1617* For example, the amount in months between 2012-06-15T00:00Z and 2012-08-14T23:59Z1618* will only be one month as it is one minute short of two months.1619* <p>1620* There are two equivalent ways of using this method.1621* The first is to invoke this method.1622* The second is to use {@link TemporalUnit#between(Temporal, Temporal)}:1623* <pre>1624* // these two lines are equivalent1625* amount = start.until(end, MONTHS);1626* amount = MONTHS.between(start, end);1627* </pre>1628* The choice should be made based on which makes the code more readable.1629* <p>1630* The calculation is implemented in this method for {@link ChronoUnit}.1631* The units {@code NANOS}, {@code MICROS}, {@code MILLIS}, {@code SECONDS},1632* {@code MINUTES}, {@code HOURS} and {@code HALF_DAYS}, {@code DAYS},1633* {@code WEEKS}, {@code MONTHS}, {@code YEARS}, {@code DECADES},1634* {@code CENTURIES}, {@code MILLENNIA} and {@code ERAS} are supported.1635* Other {@code ChronoUnit} values will throw an exception.1636* <p>1637* If the unit is not a {@code ChronoUnit}, then the result of this method1638* is obtained by invoking {@code TemporalUnit.between(Temporal, Temporal)}1639* passing {@code this} as the first argument and the converted input temporal1640* as the second argument.1641* <p>1642* This instance is immutable and unaffected by this method call.1643*1644* @param endExclusive the end date, exclusive, which is converted to an {@code OffsetDateTime}, not null1645* @param unit the unit to measure the amount in, not null1646* @return the amount of time between this date-time and the end date-time1647* @throws DateTimeException if the amount cannot be calculated, or the end1648* temporal cannot be converted to an {@code OffsetDateTime}1649* @throws UnsupportedTemporalTypeException if the unit is not supported1650* @throws ArithmeticException if numeric overflow occurs1651*/1652@Override1653public long until(Temporal endExclusive, TemporalUnit unit) {1654OffsetDateTime end = OffsetDateTime.from(endExclusive);1655if (unit instanceof ChronoUnit) {1656end = end.withOffsetSameInstant(offset);1657return dateTime.until(end.dateTime, unit);1658}1659return unit.between(this, end);1660}16611662/**1663* Formats this date-time using the specified formatter.1664* <p>1665* This date-time will be passed to the formatter to produce a string.1666*1667* @param formatter the formatter to use, not null1668* @return the formatted date-time string, not null1669* @throws DateTimeException if an error occurs during printing1670*/1671public String format(DateTimeFormatter formatter) {1672Objects.requireNonNull(formatter, "formatter");1673return formatter.format(this);1674}16751676//-----------------------------------------------------------------------1677/**1678* Combines this date-time with a time-zone to create a {@code ZonedDateTime}1679* ensuring that the result has the same instant.1680* <p>1681* This returns a {@code ZonedDateTime} formed from this date-time and the specified time-zone.1682* This conversion will ignore the visible local date-time and use the underlying instant instead.1683* This avoids any problems with local time-line gaps or overlaps.1684* The result might have different values for fields such as hour, minute an even day.1685* <p>1686* To attempt to retain the values of the fields, use {@link #atZoneSimilarLocal(ZoneId)}.1687* To use the offset as the zone ID, use {@link #toZonedDateTime()}.1688*1689* @param zone the time-zone to use, not null1690* @return the zoned date-time formed from this date-time, not null1691*/1692public ZonedDateTime atZoneSameInstant(ZoneId zone) {1693return ZonedDateTime.ofInstant(dateTime, offset, zone);1694}16951696/**1697* Combines this date-time with a time-zone to create a {@code ZonedDateTime}1698* trying to keep the same local date and time.1699* <p>1700* This returns a {@code ZonedDateTime} formed from this date-time and the specified time-zone.1701* Where possible, the result will have the same local date-time as this object.1702* <p>1703* Time-zone rules, such as daylight savings, mean that not every time on the1704* local time-line exists. If the local date-time is in a gap or overlap according to1705* the rules then a resolver is used to determine the resultant local time and offset.1706* This method uses {@link ZonedDateTime#ofLocal(LocalDateTime, ZoneId, ZoneOffset)}1707* to retain the offset from this instance if possible.1708* <p>1709* Finer control over gaps and overlaps is available in two ways.1710* If you simply want to use the later offset at overlaps then call1711* {@link ZonedDateTime#withLaterOffsetAtOverlap()} immediately after this method.1712* <p>1713* To create a zoned date-time at the same instant irrespective of the local time-line,1714* use {@link #atZoneSameInstant(ZoneId)}.1715* To use the offset as the zone ID, use {@link #toZonedDateTime()}.1716*1717* @param zone the time-zone to use, not null1718* @return the zoned date-time formed from this date and the earliest valid time for the zone, not null1719*/1720public ZonedDateTime atZoneSimilarLocal(ZoneId zone) {1721return ZonedDateTime.ofLocal(dateTime, zone, offset);1722}17231724//-----------------------------------------------------------------------1725/**1726* Converts this date-time to an {@code OffsetTime}.1727* <p>1728* This returns an offset time with the same local time and offset.1729*1730* @return an OffsetTime representing the time and offset, not null1731*/1732public OffsetTime toOffsetTime() {1733return OffsetTime.of(dateTime.toLocalTime(), offset);1734}17351736/**1737* Converts this date-time to a {@code ZonedDateTime} using the offset as the zone ID.1738* <p>1739* This creates the simplest possible {@code ZonedDateTime} using the offset1740* as the zone ID.1741* <p>1742* To control the time-zone used, see {@link #atZoneSameInstant(ZoneId)} and1743* {@link #atZoneSimilarLocal(ZoneId)}.1744*1745* @return a zoned date-time representing the same local date-time and offset, not null1746*/1747public ZonedDateTime toZonedDateTime() {1748return ZonedDateTime.of(dateTime, offset);1749}17501751/**1752* Converts this date-time to an {@code Instant}.1753* <p>1754* This returns an {@code Instant} representing the same point on the1755* time-line as this date-time.1756*1757* @return an {@code Instant} representing the same instant, not null1758*/1759public Instant toInstant() {1760return dateTime.toInstant(offset);1761}17621763/**1764* Converts this date-time to the number of seconds from the epoch of 1970-01-01T00:00:00Z.1765* <p>1766* This allows this date-time to be converted to a value of the1767* {@link ChronoField#INSTANT_SECONDS epoch-seconds} field. This is primarily1768* intended for low-level conversions rather than general application usage.1769*1770* @return the number of seconds from the epoch of 1970-01-01T00:00:00Z1771*/1772public long toEpochSecond() {1773return dateTime.toEpochSecond(offset);1774}17751776//-----------------------------------------------------------------------1777/**1778* Compares this date-time to another date-time.1779* <p>1780* The comparison is based on the instant then on the local date-time.1781* It is "consistent with equals", as defined by {@link Comparable}.1782* <p>1783* For example, the following is the comparator order:1784* <ol>1785* <li>{@code 2008-12-03T10:30+01:00}</li>1786* <li>{@code 2008-12-03T11:00+01:00}</li>1787* <li>{@code 2008-12-03T12:00+02:00}</li>1788* <li>{@code 2008-12-03T11:30+01:00}</li>1789* <li>{@code 2008-12-03T12:00+01:00}</li>1790* <li>{@code 2008-12-03T12:30+01:00}</li>1791* </ol>1792* Values #2 and #3 represent the same instant on the time-line.1793* When two values represent the same instant, the local date-time is compared1794* to distinguish them. This step is needed to make the ordering1795* consistent with {@code equals()}.1796*1797* @param other the other date-time to compare to, not null1798* @return the comparator value, negative if less, positive if greater1799*/1800@Override1801public int compareTo(OffsetDateTime other) {1802int cmp = compareInstant(this, other);1803if (cmp == 0) {1804cmp = toLocalDateTime().compareTo(other.toLocalDateTime());1805}1806return cmp;1807}18081809//-----------------------------------------------------------------------1810/**1811* Checks if the instant of this date-time is after that of the specified date-time.1812* <p>1813* This method differs from the comparison in {@link #compareTo} and {@link #equals} in that it1814* only compares the instant of the date-time. This is equivalent to using1815* {@code dateTime1.toInstant().isAfter(dateTime2.toInstant());}.1816*1817* @param other the other date-time to compare to, not null1818* @return true if this is after the instant of the specified date-time1819*/1820public boolean isAfter(OffsetDateTime other) {1821long thisEpochSec = toEpochSecond();1822long otherEpochSec = other.toEpochSecond();1823return thisEpochSec > otherEpochSec ||1824(thisEpochSec == otherEpochSec && toLocalTime().getNano() > other.toLocalTime().getNano());1825}18261827/**1828* Checks if the instant of this date-time is before that of the specified date-time.1829* <p>1830* This method differs from the comparison in {@link #compareTo} in that it1831* only compares the instant of the date-time. This is equivalent to using1832* {@code dateTime1.toInstant().isBefore(dateTime2.toInstant());}.1833*1834* @param other the other date-time to compare to, not null1835* @return true if this is before the instant of the specified date-time1836*/1837public boolean isBefore(OffsetDateTime other) {1838long thisEpochSec = toEpochSecond();1839long otherEpochSec = other.toEpochSecond();1840return thisEpochSec < otherEpochSec ||1841(thisEpochSec == otherEpochSec && toLocalTime().getNano() < other.toLocalTime().getNano());1842}18431844/**1845* Checks if the instant of this date-time is equal to that of the specified date-time.1846* <p>1847* This method differs from the comparison in {@link #compareTo} and {@link #equals}1848* in that it only compares the instant of the date-time. This is equivalent to using1849* {@code dateTime1.toInstant().equals(dateTime2.toInstant());}.1850*1851* @param other the other date-time to compare to, not null1852* @return true if the instant equals the instant of the specified date-time1853*/1854public boolean isEqual(OffsetDateTime other) {1855return toEpochSecond() == other.toEpochSecond() &&1856toLocalTime().getNano() == other.toLocalTime().getNano();1857}18581859//-----------------------------------------------------------------------1860/**1861* Checks if this date-time is equal to another date-time.1862* <p>1863* The comparison is based on the local date-time and the offset.1864* To compare for the same instant on the time-line, use {@link #isEqual}.1865* Only objects of type {@code OffsetDateTime} are compared, other types return false.1866*1867* @param obj the object to check, null returns false1868* @return true if this is equal to the other date-time1869*/1870@Override1871public boolean equals(Object obj) {1872if (this == obj) {1873return true;1874}1875if (obj instanceof OffsetDateTime) {1876OffsetDateTime other = (OffsetDateTime) obj;1877return dateTime.equals(other.dateTime) && offset.equals(other.offset);1878}1879return false;1880}18811882/**1883* A hash code for this date-time.1884*1885* @return a suitable hash code1886*/1887@Override1888public int hashCode() {1889return dateTime.hashCode() ^ offset.hashCode();1890}18911892//-----------------------------------------------------------------------1893/**1894* Outputs this date-time as a {@code String}, such as {@code 2007-12-03T10:15:30+01:00}.1895* <p>1896* The output will be one of the following ISO-8601 formats:1897* <ul>1898* <li>{@code uuuu-MM-dd'T'HH:mmXXXXX}</li>1899* <li>{@code uuuu-MM-dd'T'HH:mm:ssXXXXX}</li>1900* <li>{@code uuuu-MM-dd'T'HH:mm:ss.SSSXXXXX}</li>1901* <li>{@code uuuu-MM-dd'T'HH:mm:ss.SSSSSSXXXXX}</li>1902* <li>{@code uuuu-MM-dd'T'HH:mm:ss.SSSSSSSSSXXXXX}</li>1903* </ul>1904* The format used will be the shortest that outputs the full value of1905* the time where the omitted parts are implied to be zero.1906*1907* @return a string representation of this date-time, not null1908*/1909@Override1910public String toString() {1911return dateTime.toString() + offset.toString();1912}19131914//-----------------------------------------------------------------------1915/**1916* Writes the object using a1917* <a href="../../serialized-form.html#java.time.Ser">dedicated serialized form</a>.1918* @serialData1919* <pre>1920* out.writeByte(10); // identifies an OffsetDateTime1921* // the <a href="../../serialized-form.html#java.time.LocalDateTime">datetime</a> excluding the one byte header1922* // the <a href="../../serialized-form.html#java.time.ZoneOffset">offset</a> excluding the one byte header1923* </pre>1924*1925* @return the instance of {@code Ser}, not null1926*/1927private Object writeReplace() {1928return new Ser(Ser.OFFSET_DATE_TIME_TYPE, this);1929}19301931/**1932* Defend against malicious streams.1933*1934* @param s the stream to read1935* @throws InvalidObjectException always1936*/1937private void readObject(ObjectInputStream s) throws InvalidObjectException {1938throw new InvalidObjectException("Deserialization via serialization delegate");1939}19401941void writeExternal(ObjectOutput out) throws IOException {1942dateTime.writeExternal(out);1943offset.writeExternal(out);1944}19451946static OffsetDateTime readExternal(ObjectInput in) throws IOException, ClassNotFoundException {1947LocalDateTime dateTime = LocalDateTime.readExternal(in);1948ZoneOffset offset = ZoneOffset.readExternal(in);1949return OffsetDateTime.of(dateTime, offset);1950}19511952}195319541955