diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index f6f1e649e..c7ab031bc 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -3,3 +3,6 @@ aa7db3a42121f78a5b3bed3658786c1cef83efe8 # Enable scalafmt for Scala 3 64df4ae51873593a789af5848bd225c14d0baf8a + +# Scala Steward: Reformat with scalafmt 3.8.1 +adeb878adf3788f1b68a666b5b082025fa9bc98b diff --git a/.scalafmt.conf b/.scalafmt.conf index 243e75f0e..13ba8687a 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.6.1" +version = "3.8.1" style = default maxColumn = 100 diff --git a/build.sbt b/build.sbt index 882f37b56..8df5deb0d 100644 --- a/build.sbt +++ b/build.sbt @@ -143,7 +143,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform) .in(file("core")) .settings(commonSettings) .settings( - name := "scala-java-time", + name := "scala-java-time", libraryDependencies += ("org.portable-scala" %%% "portable-scala-reflect" % "1.1.3") .cross(CrossVersion.for3Use2_13) ) diff --git a/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseChronology.scala b/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseChronology.scala index 8ac84a894..0cb11812b 100644 --- a/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseChronology.scala +++ b/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseChronology.scala @@ -141,8 +141,8 @@ final class JapaneseChronology private () extends Chronology with Serializable { /** * Gets the ID of the chronology - 'Japanese'. * - * The ID uniquely identifies the {@code Chronology}. It can be used to lookup the {@code - * Chronology} using {@link #of(String)}. + * The ID uniquely identifies the {@code Chronology} . It can be used to lookup the {@code + * Chronology} using {@link #of(String)} . * * @return * the chronology ID - 'Japanese' @@ -194,7 +194,7 @@ final class JapaneseChronology private () extends Chronology with Serializable { * @throws DateTimeException * if unable to create the date * @throws ClassCastException - * if the { @code era} is not a { @code JapaneseEra} + * if the {@code era} is not a {@code JapaneseEra} */ override def dateYearDay(era: Era, yearOfEra: Int, dayOfYear: Int): JapaneseDate = if (!era.isInstanceOf[JapaneseEra]) throw new ClassCastException("Era must be JapaneseEra") @@ -276,16 +276,16 @@ final class JapaneseChronology private () extends Chronology with Serializable { /** * Returns the calendar system era object from the given numeric value. * - * See the description of each Era for the numeric values of: {@link JapaneseEra#HEISEI}, {@link - * JapaneseEra#SHOWA},{@link JapaneseEra#TAISHO}, {@link JapaneseEra#MEIJI}), only Meiji and later - * eras are supported. + * See the description of each Era for the numeric values of: {@link JapaneseEra#HEISEI} , {@link + * JapaneseEra#SHOWA},{@link JapaneseEra#TAISHO}, {@link JapaneseEra#MEIJI} ), only Meiji and + * later eras are supported. * * @param eraValue * the era value * @return - * the Japanese { @code Era} for the given numeric era value + * the Japanese {@code Era} for the given numeric era value * @throws DateTimeException - * if { @code eraValue} is invalid + * if {@code eraValue} is invalid */ def eraOf(eraValue: Int): JapaneseEra = JapaneseEra.of(eraValue) diff --git a/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseDate.scala b/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseDate.scala index 8afc77eaa..2b5b0f13b 100644 --- a/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseDate.scala +++ b/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseDate.scala @@ -89,7 +89,7 @@ object JapaneseDate { * * This will query the specified clock to obtain the current date - today. Using this method * allows the use of an alternate clock for testing. The alternate clock may be introduced using - * {@linkplain Clock dependency injection}. + * {@linkplain Clock dependency injection} . * * @param clock * the clock to use, not null @@ -209,20 +209,20 @@ object JapaneseDate { * * This obtains a date in the Japanese calendar system based on the specified temporal. A {@code * TemporalAccessor} represents an arbitrary set of date and time information, which this factory - * converts to an instance of {@code JapaneseDate}. + * converts to an instance of {@code JapaneseDate} . * * The conversion typically uses the {@link ChronoField#EPOCH_DAY EPOCH_DAY} field, which is * standardized across calendar systems. * * This method matches the signature of the functional interface {@link TemporalQuery} allowing it - * to be used as a query via method reference, {@code JapaneseDate::from}. + * to be used as a query via method reference, {@code JapaneseDate::from} . * * @param temporal * the temporal object to convert, not null * @return * the date in Japanese calendar system, not null * @throws DateTimeException - * if unable to convert to a { @code JapaneseDate} + * if unable to convert to a {@code JapaneseDate} */ def from(temporal: TemporalAccessor): JapaneseDate = JapaneseChronology.INSTANCE.date(temporal) @@ -231,7 +231,7 @@ object JapaneseDate { /** * A date in the Japanese Imperial calendar system. * - * This date operates using the {@linkplain JapaneseChronology Japanese Imperial calendar}. This + * This date operates using the {@linkplain JapaneseChronology Japanese Imperial calendar} . This * calendar system is primarily used in Japan. * * The Japanese Imperial calendar system is the same as the ISO calendar system apart from the @@ -248,10 +248,10 @@ object JapaneseDate { *

Specification for implementors

This class is immutable and thread-safe. * * @constructor - * Constructs a {@code JapaneseDate}. + * Constructs a {@code JapaneseDate} . * * This constructor does NOT validate the given parameters, and {@code era} and {@code year} must - * agree with {@code isoDate}. + * agree with {@code isoDate} . * @param era * the era, validated not null * @param yearOfEra @@ -307,7 +307,7 @@ final class JapaneseDate private[chrono] ( *
  • {@code YEAR}
  • {@code ERA} All other {@code ChronoField} instances will return * false. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the field is supported is determined by the field. * @@ -418,9 +418,9 @@ final class JapaneseDate private[chrono] ( * @param yearOfEra * the year-of-era to set in the returned date * @return - * a { @code JapaneseDate} based on this date with the requested year, never null + * a {@code JapaneseDate} based on this date with the requested year, never null * @throws DateTimeException - * if { @code year} is invalid + * if {@code year} is invalid */ private def withYear(era: JapaneseEra, yearOfEra: Int): JapaneseDate = { val year: Int = JapaneseChronology.INSTANCE.prolepticYear(era, yearOfEra) @@ -438,9 +438,9 @@ final class JapaneseDate private[chrono] ( * @param year * the year to set in the returned date * @return - * a { @code JapaneseDate} based on this date with the requested year-of-era, never null + * a {@code JapaneseDate} based on this date with the requested year-of-era, never null * @throws DateTimeException - * if { @code year} is invalid + * if {@code year} is invalid */ private def withYear(year: Int): JapaneseDate = withYear(getEra, year) diff --git a/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseEra.scala b/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseEra.scala index 91f702817..d4ceef0a4 100644 --- a/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseEra.scala +++ b/core/jvm/src/main/scala/org/threeten/bp/chrono/JapaneseEra.scala @@ -86,13 +86,13 @@ object JapaneseEra { * Obtains an instance of {@code JapaneseEra} from an {@code int} value. * * The {@link #SHOWA} era that contains 1970-01-01 (ISO calendar system) has the value 1 Later era - * is numbered 2 ({@link #HEISEI}). Earlier eras are numbered 0 ({@link #TAISHO}), - * -1 ({@link #MEIJI}), only Meiji and later eras are supported. + * is numbered 2 ({@link #HEISEI}). Earlier eras are numbered 0 ({@link #TAISHO}), -1 ({@link + * #MEIJI}), only Meiji and later eras are supported. * * @param japaneseEra * the era to represent * @return - * the { @code JapaneseEra} singleton, not null + * the {@code JapaneseEra} singleton, not null * @throws DateTimeException * if the value is invalid */ @@ -112,7 +112,7 @@ object JapaneseEra { * @param japaneseEra * the japaneseEra name; non-null * @return - * the { @code JapaneseEra} singleton, never null + * the {@code JapaneseEra} singleton, never null * @throws IllegalArgumentException * if there is not JapaneseEra with the specified name */ @@ -174,7 +174,7 @@ object JapaneseEra { * This class defines the valid eras for the Japanese chronology. Japan introduced the Gregorian * calendar starting with Meiji 6. Only Meiji and later eras are supported; dates before Meiji 6, * January 1 are not supported.

    The four supported eras are hard-coded. A single additional era - * may be registered using {@link #registerEra(LocalDate, String)}. + * may be registered using {@link #registerEra(LocalDate, String)} . * *

    Specification for implementors

    This class is immutable and thread-safe. * @@ -213,7 +213,7 @@ final class JapaneseEra private[chrono] ( } /** - * Returns the numeric value of this {@code JapaneseEra}. + * Returns the numeric value of this {@code JapaneseEra} . * * The {@link #SHOWA} era that contains 1970-01-01 (ISO calendar system) has the value 1. Later * eras are numbered from 2 ({@link #HEISEI}). Earlier eras are numbered 0 ({@link #TAISHO}) and diff --git a/core/jvm/src/main/scala/org/threeten/bp/chrono/internal/TTBPJapaneseEra.scala b/core/jvm/src/main/scala/org/threeten/bp/chrono/internal/TTBPJapaneseEra.scala index 0506f526b..0ab0ea550 100644 --- a/core/jvm/src/main/scala/org/threeten/bp/chrono/internal/TTBPJapaneseEra.scala +++ b/core/jvm/src/main/scala/org/threeten/bp/chrono/internal/TTBPJapaneseEra.scala @@ -8,7 +8,7 @@ import java.util.Arrays object TTBPJapaneseEra { /** - * Registers an additional instance of {@code JapaneseEra}.

    A new Japanese era can begin at + * Registers an additional instance of {@code JapaneseEra} .

    A new Japanese era can begin at * any time. This method allows one new era to be registered without the need for a new library * version. If needed, callers should assign the result to a static variable accessible across the * application. This must be done once, in early startup code.

    NOTE: This method does not @@ -19,7 +19,7 @@ object TTBPJapaneseEra { * @param name * the name * @return - * the { @code JapaneseEra} singleton, not null + * the {@code JapaneseEra} singleton, not null * @throws DateTimeException * if an additional era has already been registered */ diff --git a/core/shared/src/main/scala-2/org/threeten/bp/DayOfWeek.scala b/core/shared/src/main/scala-2/org/threeten/bp/DayOfWeek.scala index c77d2bf23..2e427a426 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/DayOfWeek.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/DayOfWeek.scala @@ -60,7 +60,7 @@ import org.threeten.bp.temporal.ValueRange * assign different numeric values to the days, declaring Sunday to have the value 1, however this * class provides no support for this. See {@link WeekFields} for localized week-numbering. * - * Do not use {@code ordinal()} to obtain the numeric representation of {@code DayOfWeek}. Use + * Do not use {@code ordinal()} to obtain the numeric representation of {@code DayOfWeek} . Use * {@code getValue()} instead. * * This enum represents a common concept that is found in many calendar systems. As such, this enum @@ -72,12 +72,13 @@ import org.threeten.bp.temporal.ValueRange object DayOfWeek { /** - * The singleton instance for the day-of-week of Monday. This has the numeric value of {@code 1}. + * The singleton instance for the day-of-week of Monday. This has the numeric value of {@code 1} . */ lazy val MONDAY = new DayOfWeek("MONDAY", 0) /** - * The singleton instance for the day-of-week of Tuesday. This has the numeric value of {@code 2}. + * The singleton instance for the day-of-week of Tuesday. This has the numeric value of {@code 2} + * . */ lazy val TUESDAY = new DayOfWeek("TUESDAY", 1) @@ -94,7 +95,7 @@ object DayOfWeek { lazy val THURSDAY = new DayOfWeek("THURSDAY", 3) /** - * The singleton instance for the day-of-week of Friday. This has the numeric value of {@code 5}. + * The singleton instance for the day-of-week of Friday. This has the numeric value of {@code 5} . */ lazy val FRIDAY = new DayOfWeek("FRIDAY", 4) @@ -105,7 +106,7 @@ object DayOfWeek { lazy val SATURDAY = new DayOfWeek("SATURDAY", 5) /** - * The singleton instance for the day-of-week of Sunday. This has the numeric value of {@code 7}. + * The singleton instance for the day-of-week of Sunday. This has the numeric value of {@code 7} . */ lazy val SUNDAY = new DayOfWeek("SUNDAY", 6) @@ -147,19 +148,19 @@ object DayOfWeek { * Obtains an instance of {@code DayOfWeek} from a temporal object. * * A {@code TemporalAccessor} represents some form of date and time information. This factory - * converts the arbitrary temporal object to an instance of {@code DayOfWeek}. + * converts the arbitrary temporal object to an instance of {@code DayOfWeek} . * * The conversion extracts the {@link ChronoField#DAY_OF_WEEK DAY_OF_WEEK} field. * * This method matches the signature of the functional interface {@link TemporalQuery} allowing it - * to be used as a query via method reference, {@code DayOfWeek::from}. + * to be used as a query via method reference, {@code DayOfWeek::from} . * * @param temporal * the temporal object to convert, not null * @return * the day-of-week, not null * @throws DateTimeException - * if unable to convert to a { @code DayOfWeek} + * if unable to convert to a {@code DayOfWeek} */ def from(temporal: TemporalAccessor): DayOfWeek = { temporal match { @@ -221,7 +222,7 @@ final class DayOfWeek(name: String, ordinal: Int) * If the field is {@link ChronoField#DAY_OF_WEEK DAY_OF_WEEK} then this method returns true. All * other {@code ChronoField} instances will return false. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the field is supported is determined by the field. * @@ -247,7 +248,7 @@ final class DayOfWeek(name: String, ordinal: Int) * from 1 to 7, will be returned. All other {@code ChronoField} instances will throw a {@code * DateTimeException}. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the range can be obtained is determined by the field. * @@ -267,7 +268,7 @@ final class DayOfWeek(name: String, ordinal: Int) field.rangeRefinedBy(this) /** - * Gets the value of the specified field from this day-of-week as an {@code int}. + * Gets the value of the specified field from this day-of-week as an {@code int} . * * This queries this day-of-week for the value for the specified field. The returned value will * always be within the valid range of values for the field. If it is not possible to return the @@ -277,7 +278,7 @@ final class DayOfWeek(name: String, ordinal: Int) * from 1 to 7, will be returned. All other {@code ChronoField} instances will throw a {@code * DateTimeException}. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -288,7 +289,7 @@ final class DayOfWeek(name: String, ordinal: Int) * @throws DateTimeException * if a value for the field cannot be obtained * @throws DateTimeException - * if the range of valid values for the field exceeds an { @code int} + * if the range of valid values for the field exceeds an {@code int} * @throws DateTimeException * if the value is outside the range of valid values for the field * @throws ArithmeticException @@ -301,7 +302,7 @@ final class DayOfWeek(name: String, ordinal: Int) range(field).checkValidIntValue(getLong(field), field) /** - * Gets the value of the specified field from this day-of-week as a {@code long}. + * Gets the value of the specified field from this day-of-week as a {@code long} . * * This queries this day-of-week for the value for the specified field. If it is not possible to * return the value, because the field is not supported or for some other reason, an exception is @@ -311,7 +312,7 @@ final class DayOfWeek(name: String, ordinal: Int) * from 1 to 7, will be returned. All other {@code ChronoField} instances will throw a {@code * DateTimeException}. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -406,7 +407,7 @@ final class DayOfWeek(name: String, ordinal: Int) * The adjustment is equivalent to using {@link Temporal#with(TemporalField, long)} passing {@link * ChronoField#DAY_OF_WEEK} as the field. Note that this adjusts forwards or backwards within a * Monday to Sunday week. See {@link WeekFields#dayOfWeek} for localized week start days. See - * {@link TemporalAdjusters} for other adjusters with more control, such as {@code next(MONDAY)}. + * {@link TemporalAdjusters} for other adjusters with more control, such as {@code next(MONDAY)} . * * In most cases, it is clearer to reverse the calling pattern by using {@link * Temporal#with(TemporalAdjuster)}:

     // these two lines are equivalent, but the second
    diff --git a/core/shared/src/main/scala-2/org/threeten/bp/Month.scala b/core/shared/src/main/scala-2/org/threeten/bp/Month.scala
    index f6a778cf7..2655da578 100644
    --- a/core/shared/src/main/scala-2/org/threeten/bp/Month.scala
    +++ b/core/shared/src/main/scala-2/org/threeten/bp/Month.scala
    @@ -60,8 +60,8 @@ import org.threeten.bp.temporal.ValueRange
      * is recommended that applications use the enum rather than the {@code int} value to ensure code
      * clarity.
      *
    - * Do not use {@code ordinal()} to obtain the numeric representation of {@code Month}. Use {@code
    - * getValue()} instead.
    + * Do not use {@code ordinal()} to obtain the numeric representation of {@code Month} . Use
    + * {@code getValue()} instead.
      *
      * This enum represents a common concept that is found in many calendar systems. As such, this enum
      * may be used by any calendar system that has the month-of-year concept defined exactly equivalent
    @@ -73,25 +73,25 @@ object Month {
     
       /**
        * The singleton instance for the month of January with 31 days. This has the numeric value of
    -   * {@code 1}.
    +   * {@code 1} .
        */
       lazy val JANUARY = new Month("JANUARY", 0)
     
       /**
        * The singleton instance for the month of February with 28 days, or 29 in a leap year. This has
    -   * the numeric value of {@code 2}.
    +   * the numeric value of {@code 2} .
        */
       lazy val FEBRUARY = new Month("FEBRUARY", 1)
     
       /**
        * The singleton instance for the month of March with 31 days. This has the numeric value of
    -   * {@code 3}.
    +   * {@code 3} .
        */
       lazy val MARCH = new Month("MARCH", 2)
     
       /**
        * The singleton instance for the month of April with 30 days. This has the numeric value of
    -   * {@code 4}.
    +   * {@code 4} .
        */
       lazy val APRIL = new Month("APRIL", 3)
     
    @@ -115,31 +115,31 @@ object Month {
     
       /**
        * The singleton instance for the month of August with 31 days. This has the numeric value of
    -   * {@code 8}.
    +   * {@code 8} .
        */
       lazy val AUGUST = new Month("AUGUST", 7)
     
       /**
        * The singleton instance for the month of September with 30 days. This has the numeric value of
    -   * {@code 9}.
    +   * {@code 9} .
        */
       lazy val SEPTEMBER = new Month("SEPTEMBER", 8)
     
       /**
        * The singleton instance for the month of October with 31 days. This has the numeric value of
    -   * {@code 10}.
    +   * {@code 10} .
        */
       lazy val OCTOBER = new Month("OCTOBER", 9)
     
       /**
        * The singleton instance for the month of November with 30 days. This has the numeric value of
    -   * {@code 11}.
    +   * {@code 11} .
        */
       lazy val NOVEMBER = new Month("NOVEMBER", 10)
     
       /**
        * The singleton instance for the month of December with 31 days. This has the numeric value of
    -   * {@code 12}.
    +   * {@code 12} .
        */
       lazy val DECEMBER = new Month("DECEMBER", 11)
     
    @@ -191,21 +191,21 @@ object Month {
        * Obtains an instance of {@code Month} from a temporal object.
        *
        * A {@code TemporalAccessor} represents some form of date and time information. This factory
    -   * converts the arbitrary temporal object to an instance of {@code Month}.
    +   * converts the arbitrary temporal object to an instance of {@code Month} .
        *
        * The conversion extracts the {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} field. The
        * extraction is only permitted if the temporal object has an ISO chronology, or can be converted
    -   * to a {@code LocalDate}.
    +   * to a {@code LocalDate} .
        *
        * This method matches the signature of the functional interface {@link TemporalQuery} allowing it
    -   * to be used in queries via method reference, {@code Month::from}.
    +   * to be used in queries via method reference, {@code Month::from} .
        *
        * @param temporal
        *   the temporal object to convert, not null
        * @return
        *   the month-of-year, not null
        * @throws DateTimeException
    -   *   if unable to convert to a { @code Month}
    +   *   if unable to convert to a {@code Month}
        */
       def from(temporal: TemporalAccessor): Month = {
         var _temporal = temporal
    @@ -271,7 +271,7 @@ final class Month private (name: String, ordinal: Int)
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then this method returns true.
        * All other {@code ChronoField} instances will return false.
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the
        * argument. Whether the field is supported is determined by the field.
        *
    @@ -295,9 +295,9 @@ final class Month private (name: String, ordinal: Int)
        *
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then the range of the
        * month-of-year, from 1 to 12, will be returned. All other {@code ChronoField} instances will
    -   * throw a {@code DateTimeException}.
    +   * throw a {@code DateTimeException} .
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the
        * argument. Whether the range can be obtained is determined by the field.
        *
    @@ -317,7 +317,7 @@ final class Month private (name: String, ordinal: Int)
           field.rangeRefinedBy(this)
     
       /**
    -   * Gets the value of the specified field from this month-of-year as an {@code int}.
    +   * Gets the value of the specified field from this month-of-year as an {@code int} .
        *
        * This queries this month for the value for the specified field. The returned value will always
        * be within the valid range of values for the field. If it is not possible to return the value,
    @@ -325,9 +325,9 @@ final class Month private (name: String, ordinal: Int)
        *
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then the value of the
        * month-of-year, from 1 to 12, will be returned. All other {@code ChronoField} instances will
    -   * throw a {@code DateTimeException}.
    +   * throw a {@code DateTimeException} .
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument.
        * Whether the value can be obtained, and what the value represents, is determined by the field.
        *
    @@ -338,7 +338,7 @@ final class Month private (name: String, ordinal: Int)
        * @throws DateTimeException
        *   if a value for the field cannot be obtained
        * @throws DateTimeException
    -   *   if the range of valid values for the field exceeds an { @code int}
    +   *   if the range of valid values for the field exceeds an {@code int}
        * @throws DateTimeException
        *   if the value is outside the range of valid values for the field
        * @throws ArithmeticException
    @@ -351,16 +351,16 @@ final class Month private (name: String, ordinal: Int)
           range(field).checkValidIntValue(getLong(field), field)
     
       /**
    -   * Gets the value of the specified field from this month-of-year as a {@code long}.
    +   * Gets the value of the specified field from this month-of-year as a {@code long} .
        *
        * This queries this month for the value for the specified field. If it is not possible to return
        * the value, because the field is not supported or for some other reason, an exception is thrown.
        *
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then the value of the
        * month-of-year, from 1 to 12, will be returned. All other {@code ChronoField} instances will
    -   * throw a {@code DateTimeException}.
    +   * throw a {@code DateTimeException} .
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument.
        * Whether the value can be obtained, and what the value represents, is determined by the field.
        *
    diff --git a/core/shared/src/main/scala-2/org/threeten/bp/chrono/HijrahEra.scala b/core/shared/src/main/scala-2/org/threeten/bp/chrono/HijrahEra.scala
    index 12c9e0686..4516174f2 100644
    --- a/core/shared/src/main/scala-2/org/threeten/bp/chrono/HijrahEra.scala
    +++ b/core/shared/src/main/scala-2/org/threeten/bp/chrono/HijrahEra.scala
    @@ -79,7 +79,7 @@ object HijrahEra {
      * The Hijrah calendar system has two eras. The date {@code 0001-01-01 (Hijrah)} is {@code 622-06-19
      * (ISO)}.
      *
    - * Do not use {@code ordinal()} to obtain the numeric representation of {@code HijrahEra}. Use
    + * Do not use {@code ordinal()} to obtain the numeric representation of {@code HijrahEra} . Use
      * {@code getValue()} instead.
      *
      * 

    Specification for implementors

    This is an immutable and thread-safe enum. diff --git a/core/shared/src/main/scala-2/org/threeten/bp/chrono/IsoEra.scala b/core/shared/src/main/scala-2/org/threeten/bp/chrono/IsoEra.scala index 985490945..f9fe63392 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/chrono/IsoEra.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/chrono/IsoEra.scala @@ -38,14 +38,14 @@ object IsoEra { /** * The singleton instance for the era BCE, 'Before Current Era'. The 'ISO' part of the name * emphasizes that this differs from the BCE era in the Gregorian calendar system. This has the - * numeric value of {@code 0}. + * numeric value of {@code 0} . */ lazy val BCE = new IsoEra("BCE", 0) /** * The singleton instance for the era CE, 'Current Era'. The 'ISO' part of the name emphasizes * that this differs from the CE era in the Gregorian calendar system. This has the numeric value - * of {@code 1}. + * of {@code 1} . */ lazy val CE = new IsoEra("CE", 1) @@ -79,7 +79,7 @@ object IsoEra { * - 'Current era' (CE) for years from 0001-01-01 (ISO) and 'Before current era' (BCE) for years * before that. * - * Do not use {@code ordinal()} to obtain the numeric representation of {@code IsoEra}. Use + * Do not use {@code ordinal()} to obtain the numeric representation of {@code IsoEra} . Use * {@code getValue()} instead. * *

    Specification for implementors

    This is an immutable and thread-safe enum. diff --git a/core/shared/src/main/scala-2/org/threeten/bp/chrono/MinguoEra.scala b/core/shared/src/main/scala-2/org/threeten/bp/chrono/MinguoEra.scala index 6014854ba..91dfae9b1 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/chrono/MinguoEra.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/chrono/MinguoEra.scala @@ -37,13 +37,13 @@ object MinguoEra { /** * The singleton instance for the era BEFORE_ROC, 'Before Republic of China'. This has the numeric - * value of {@code 0}. + * value of {@code 0} . */ lazy val BEFORE_ROC = new MinguoEra("BEFORE_ROC", 0) /** * The singleton instance for the era ROC, 'Republic of China'. This has the numeric value of - * {@code 1}. + * {@code 1} . */ lazy val ROC = new MinguoEra("ROC", 1) @@ -77,7 +77,7 @@ object MinguoEra { * The Minguo calendar system has two eras. The date {@code 0001-01-01 (Minguo)} is equal to {@code * 1912-01-01 (ISO)}. * - * Do not use {@code ordinal()} to obtain the numeric representation of {@code MinguoEra}. Use + * Do not use {@code ordinal()} to obtain the numeric representation of {@code MinguoEra} . Use * {@code getValue()} instead. * *

    Specification for implementors

    This is an immutable and thread-safe enum. diff --git a/core/shared/src/main/scala-2/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala b/core/shared/src/main/scala-2/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala index 77d3e484f..9dc1b0484 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala @@ -282,8 +282,8 @@ object TTBPDateTimeFormatterBuilder { * @param signStyle * the positive/negative sign style, not null * @param subsequentWidth - * the width of subsequent non-negative numbers, 0 or greater, - * -1 if fixed width due to active adjacent parsing + * the width of subsequent non-negative numbers, 0 or greater, -1 if fixed width due to active + * adjacent parsing */ private[format] class NumberPrinterParser private[format] ( private[format] val field: TemporalField, @@ -797,8 +797,8 @@ object TTBPDateTimeFormatterBuilder { * * The fractional value must be between 0 (inclusive) and 1 (exclusive). It can only be returned * if the {@link TemporalField#range() value range} is fixed. The value is obtained by - * calculation from the field range and a rounding mode of {@link RoundingMode#FLOOR FLOOR}. The - * calculation is inaccurate if the values do not run continuously from smallest to largest. + * calculation from the field range and a rounding mode of {@link RoundingMode#FLOOR FLOOR} . + * The calculation is inaccurate if the values do not run continuously from smallest to largest. * * For example, the fractional second-of-minute of 0.25 would be converted to 15, assuming the * standard definition of 60 seconds in a minute. diff --git a/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoField.scala b/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoField.scala index d460583d4..feb7e462a 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoField.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoField.scala @@ -52,7 +52,7 @@ import org.threeten.bp.format.ResolverStyle * A standard set of fields. * * This set of fields provide field-based access to manipulate a date, time or date-time. The - * standard set of fields can be extended by implementing {@link TemporalField}. + * standard set of fields can be extended by implementing {@link TemporalField} . * * These fields are intended to be applicable in multiple calendar systems. For example, most * non-ISO calendar systems define dates as a year, month and day, just with slightly different @@ -70,7 +70,7 @@ object ChronoField { * * This field is used to represent the nano-of-second handling any fraction of the second. * Implementations of {@code TemporalAccessor} should provide a value for this field if they can - * return a value for {@link #SECOND_OF_MINUTE}, {@link #SECOND_OF_DAY} or {@link + * return a value for {@link #SECOND_OF_MINUTE} , {@link #SECOND_OF_DAY} or {@link * #INSTANT_SECONDS} filling unknown precision with zero. * * When this field is used for setting a value, it should set as much precision as the object @@ -102,7 +102,7 @@ object ChronoField { * * This field is used to represent the micro-of-second handling any fraction of the second. * Implementations of {@code TemporalAccessor} should provide a value for this field if they can - * return a value for {@link #SECOND_OF_MINUTE}, {@link #SECOND_OF_DAY} or {@link + * return a value for {@link #SECOND_OF_MINUTE} , {@link #SECOND_OF_DAY} or {@link * #INSTANT_SECONDS} filling unknown precision with zero. * * When this field is used for setting a value, it should behave in the same way as setting {@link @@ -135,7 +135,7 @@ object ChronoField { * * This field is used to represent the milli-of-second handling any fraction of the second. * Implementations of {@code TemporalAccessor} should provide a value for this field if they can - * return a value for {@link #SECOND_OF_MINUTE}, {@link #SECOND_OF_DAY} or {@link + * return a value for {@link #SECOND_OF_MINUTE} , {@link #SECOND_OF_DAY} or {@link * #INSTANT_SECONDS} filling unknown precision with zero. * * When this field is used for setting a value, it should behave in the same way as setting {@link @@ -398,12 +398,12 @@ object ChronoField { * The year within the era. * * This represents the concept of the year within the era. This field is typically used with - * {@link #ERA}. + * {@link #ERA} . * * The standard mental model for a date is based on three concepts - year, month and day. These - * map onto the {@code YEAR}, {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that + * map onto the {@code YEAR} , {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that * there is no reference to eras. The full model for a date requires four concepts - era, year, - * month and day. These map onto the {@code ERA}, {@code YEAR_OF_ERA}, {@code MONTH_OF_YEAR} and + * month and day. These map onto the {@code ERA} , {@code YEAR_OF_ERA} , {@code MONTH_OF_YEAR} and * {@code DAY_OF_MONTH} fields. Whether this field or {@code YEAR} is used depends on which mental * model is being used. See {@link ChronoLocalDate} for more discussion on this topic. * @@ -443,9 +443,9 @@ object ChronoField { * showing the mapping from proleptic year to year-of-era. * * The standard mental model for a date is based on three concepts - year, month and day. These - * map onto the {@code YEAR}, {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that + * map onto the {@code YEAR} , {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that * there is no reference to eras. The full model for a date requires four concepts - era, year, - * month and day. These map onto the {@code ERA}, {@code YEAR_OF_ERA}, {@code MONTH_OF_YEAR} and + * month and day. These map onto the {@code ERA} , {@code YEAR_OF_ERA} , {@code MONTH_OF_YEAR} and * {@code DAY_OF_MONTH} fields. Whether this field or {@code YEAR_OF_ERA} is used depends on which * mental model is being used. See {@link ChronoLocalDate} for more discussion on this topic. * @@ -467,7 +467,7 @@ object ChronoField { * The era. * * This represents the concept of the era, which is the largest division of the time-line. This - * field is typically used with {@link #YEAR_OF_ERA}. + * field is typically used with {@link #YEAR_OF_ERA} . * * In the default ISO calendar system, there are two eras defined, 'BCE' and 'CE'. The era 'CE' is * the one currently in use and year-of-era runs from 1 to the maximum value. The era 'BCE' is the @@ -508,7 +508,7 @@ object ChronoField { * A {@link ZoneOffset} represents the period of time that local time differs from UTC/Greenwich. * This is usually a fixed number of hours and minutes. It is equivalent to the {@link * ZoneOffset#getTotalSeconds() total amount} of the offset in seconds. For example, during the - * winter Paris has an offset of {@code +01:00}, which is 3600 seconds. + * winter Paris has an offset of {@code +01:00} , which is 3600 seconds. * * This field is strictly defined to have the same meaning in all calendar systems. This is * necessary to ensure interoperation between calendars. @@ -619,10 +619,10 @@ final class ChronoField private ( def checkValidValue(value: Long): Long = _range.checkValidValue(value, this) /** - * Checks that the specified value is valid and fits in an {@code int}. + * Checks that the specified value is valid and fits in an {@code int} . * * This validates that the value is within the outer range of valid values returned by {@link - * #range()}. It also checks that all valid values are within the bounds of an {@code int}. + * #range()}. It also checks that all valid values are within the bounds of an {@code int} . * * This method checks against the range of the field in the ISO-8601 calendar system. This range * may be incorrect for other calendar systems. Use {@link Chronology#range(ChronoField)} to diff --git a/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoUnit.scala b/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoUnit.scala index cd5121774..d68c8f351 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoUnit.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/temporal/ChronoUnit.scala @@ -40,7 +40,7 @@ import org.threeten.bp.chrono.ChronoZonedDateTime * A standard set of date periods units. * * This set of units provide unit-based access to manipulate a date, time or date-time. The standard - * set of units can be extended by implementing {@link TemporalUnit}. + * set of units can be extended by implementing {@link TemporalUnit} . * * These units are intended to be applicable in multiple calendar systems. For example, most non-ISO * calendar systems define units of years, months and days, just with slightly different rules. The @@ -94,7 +94,7 @@ object ChronoUnit { /** * Unit that represents the concept of a day. For the ISO calendar system, it is the standard day - * from midnight to midnight. The estimated duration of a day is {@code 24 Hours}. + * from midnight to midnight. The estimated duration of a day is {@code 24 Hours} . * * When used with other calendar systems it must correspond to the day defined by the rising and * setting of the Sun on Earth. It is not required that days begin at midnight - when converting @@ -120,7 +120,7 @@ object ChronoUnit { /** * Unit that represents the concept of a year. For the ISO calendar system, it is equal to 12 - * months. The estimated duration of a year is {@code 365.2425 Days}. + * months. The estimated duration of a year is {@code 365.2425 Days} . * * When used with other calendar systems it must correspond to an integral number of days or * months roughly equal to a year defined by the passage of the Earth around the Sun. @@ -157,7 +157,7 @@ object ChronoUnit { /** * Unit that represents the concept of an era. The ISO calendar system doesn't have eras thus it * is impossible to add an era to a date or date-time. The estimated duration of the era is - * artificially defined as {@code 1,000,000,000 Years}. + * artificially defined as {@code 1,000,000,000 Years} . * * When used with other calendar systems there are no restrictions on the unit. */ @@ -166,7 +166,7 @@ object ChronoUnit { /** * Artificial unit that represents the concept of forever. This is primarily used with {@link * TemporalField} to represent unbounded fields such as the year or era. The estimated duration of - * the era is artificially defined as the largest duration supported by {@code Duration}. + * the era is artificially defined as the largest duration supported by {@code Duration} . */ lazy val FOREVER = new ChronoUnit("Forever", 15, Duration.ofSeconds(Long.MaxValue, 999999999)) diff --git a/core/shared/src/main/scala-2/org/threeten/bp/temporal/IsoFields.scala b/core/shared/src/main/scala-2/org/threeten/bp/temporal/IsoFields.scala index 50ac10304..2d4f92369 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/temporal/IsoFields.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/temporal/IsoFields.scala @@ -158,7 +158,7 @@ object IsoFields { * * This allows a number of week-based-years to be added to, or subtracted from, a date. The unit * is equal to either 52 or 53 weeks. The estimated duration of a week-based-year is the same as - * that of a standard ISO year at {@code 365.2425 Days}. + * that of a standard ISO year at {@code 365.2425 Days} . * * The rules for addition add the number of week-based-years to the existing value for the * week-based-year field. If the resulting week-based-year only has 52 weeks, then the date will @@ -170,7 +170,7 @@ object IsoFields { /** * Unit that represents the concept of a quarter-year. For the ISO calendar system, it is equal to - * 3 months. The estimated duration of a quarter-year is one quarter of {@code 365.2425 Days}. + * 3 months. The estimated duration of a quarter-year is one quarter of {@code 365.2425 Days} . * * This unit is an immutable and thread-safe singleton. */ diff --git a/core/shared/src/main/scala-2/org/threeten/bp/temporal/JulianFields.scala b/core/shared/src/main/scala-2/org/threeten/bp/temporal/JulianFields.scala index 0ef1f8628..b8f4f39e5 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/temporal/JulianFields.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/temporal/JulianFields.scala @@ -62,7 +62,7 @@ object JulianFields { * For date-times, 'JULIAN_DAY.getFrom()' assumes the same value from midnight until just before * the next midnight. When 'JULIAN_DAY.adjustInto()' is applied to a date-time, the time of day * portion remains unaltered. 'JULIAN_DAY.adjustInto()' and 'JULIAN_DAY.getFrom()' only apply to - * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY}. A {@link + * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY} . A {@link * DateTimeException} is thrown for any other type of object. * *

    Astronomical and Scientific Notes

    The standard astronomical definition uses a fraction @@ -94,15 +94,15 @@ object JulianFields { * * This is an integer-based version of the Modified Julian Day Number. Modified Julian Day (MJD) * is a well-known system that counts days continuously. It is defined relative to astronomical - * Julian Day as {@code MJD = JD - 2400000.5}. Each Modified Julian Day runs from midnight to + * Julian Day as {@code MJD = JD - 2400000.5} . Each Modified Julian Day runs from midnight to * midnight. The field always refers to the local date-time, ignoring the offset or zone. * * For date-times, 'MODIFIED_JULIAN_DAY.getFrom()' assumes the same value from midnight until just * before the next midnight. When 'MODIFIED_JULIAN_DAY.adjustInto()' is applied to a date-time, * the time of day portion remains unaltered. 'MODIFIED_JULIAN_DAY.adjustInto()' and * 'MODIFIED_JULIAN_DAY.getFrom()' only apply to {@code Temporal} objects that can be converted - * into {@link ChronoField#EPOCH_DAY}. A {@link DateTimeException} is thrown for any other type of - * object. + * into {@link ChronoField#EPOCH_DAY} . A {@link DateTimeException} is thrown for any other type + * of object. * * This implementation is an integer version of MJD with the decimal part rounded to floor. * @@ -133,7 +133,7 @@ object JulianFields { * For date-times, 'RATA_DIE.getFrom()' assumes the same value from midnight until just before the * next midnight. When 'RATA_DIE.adjustInto()' is applied to a date-time, the time of day portion * remains unaltered. 'MODIFIED_JULIAN_DAY.adjustInto()' and 'RATA_DIE.getFrom()' only apply to - * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY}. A {@link + * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY} . A {@link * DateTimeException} is thrown for any other type of object. */ lazy val RATA_DIE: TemporalField = Field.RATA_DIE diff --git a/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneMap.scala b/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneMap.scala index f4c6aa966..5e5a4267a 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneMap.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneMap.scala @@ -12,7 +12,7 @@ import scala.collection.immutable // TreeMap is not available in Scala.js however it is needed for Time Zone support // This is a simple implementation of NavigableMap, performance is likely terrible private[bp] class ZoneMap[K: ClassTag, V] private[bp] (var map: immutable.TreeMap[K, V])(implicit - ordering: Ordering[K] + ordering: Ordering[K] ) extends AbstractMap[K, V] with java.util.NavigableMap[K, V] { def this()(implicit ordering: Ordering[K]) = @@ -164,6 +164,6 @@ private[bp] class ZoneMap[K: ClassTag, V] private[bp] (var map: immutable.TreeMa object ZoneMap { def apply[K: ClassTag, V](map: immutable.TreeMap[K, V])(implicit - ordering: Ordering[K] + ordering: Ordering[K] ): java.util.NavigableMap[K, V] = new ZoneMap[K, V](map) } diff --git a/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala b/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala index c0d2defaf..b7ceff876 100644 --- a/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala +++ b/core/shared/src/main/scala-2/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala @@ -60,15 +60,15 @@ object ZoneOffsetTransitionRule { /** * Obtains an instance defining the yearly rule to create transitions between two offsets. * - * Applications should normally obtain an instance from {@link ZoneRules}. This factory is only - * intended for use when creating {@link ZoneRules}. + * Applications should normally obtain an instance from {@link ZoneRules} . This factory is only + * intended for use when creating {@link ZoneRules} . * * @param month * the month of the month-day of the first day of the cutover week, not null * @param dayOfMonthIndicator * the day of the month-day of the cutover week, positive if the week is that day or later, * negative if the week is that day or earlier, counting from the last day of the month, from - * -28 to 31 excluding 0 + * -28 to 31 excluding 0 * @param dayOfWeek * the required day-of-week, null if the month-day should not be changed * @param time diff --git a/core/shared/src/main/scala-3/org/threeten/bp/DayOfWeek.scala b/core/shared/src/main/scala-3/org/threeten/bp/DayOfWeek.scala index 2c4cc0f56..6162303de 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/DayOfWeek.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/DayOfWeek.scala @@ -60,7 +60,7 @@ import org.threeten.bp.temporal.ValueRange * assign different numeric values to the days, declaring Sunday to have the value 1, however this * class provides no support for this. See {@link WeekFields} for localized week-numbering. * - * Do not use {@code ordinal()} to obtain the numeric representation of {@code DayOfWeek}. Use + * Do not use {@code ordinal()} to obtain the numeric representation of {@code DayOfWeek} . Use * {@code getValue()} instead. * * This enum represents a common concept that is found in many calendar systems. As such, this enum @@ -100,19 +100,19 @@ object DayOfWeek { * Obtains an instance of {@code DayOfWeek} from a temporal object. * * A {@code TemporalAccessor} represents some form of date and time information. This factory - * converts the arbitrary temporal object to an instance of {@code DayOfWeek}. + * converts the arbitrary temporal object to an instance of {@code DayOfWeek} . * * The conversion extracts the {@link ChronoField#DAY_OF_WEEK DAY_OF_WEEK} field. * * This method matches the signature of the functional interface {@link TemporalQuery} allowing it - * to be used as a query via method reference, {@code DayOfWeek::from}. + * to be used as a query via method reference, {@code DayOfWeek::from} . * * @param temporal * the temporal object to convert, not null * @return * the day-of-week, not null * @throws DateTimeException - * if unable to convert to a { @code DayOfWeek} + * if unable to convert to a {@code DayOfWeek} */ def from(temporal: TemporalAccessor): DayOfWeek = { temporal match { @@ -136,12 +136,13 @@ enum DayOfWeek(name: String, ordinal: Int) with TemporalAdjuster { /** - * The singleton instance for the day-of-week of Monday. This has the numeric value of {@code 1}. + * The singleton instance for the day-of-week of Monday. This has the numeric value of {@code 1} . */ case MONDAY extends DayOfWeek("MONDAY", 0) /** - * The singleton instance for the day-of-week of Tuesday. This has the numeric value of {@code 2}. + * The singleton instance for the day-of-week of Tuesday. This has the numeric value of {@code 2} + * . */ case TUESDAY extends DayOfWeek("TUESDAY", 1) @@ -158,7 +159,7 @@ enum DayOfWeek(name: String, ordinal: Int) case THURSDAY extends DayOfWeek("THURSDAY", 3) /** - * The singleton instance for the day-of-week of Friday. This has the numeric value of {@code 5}. + * The singleton instance for the day-of-week of Friday. This has the numeric value of {@code 5} . */ case FRIDAY extends DayOfWeek("FRIDAY", 4) @@ -169,7 +170,7 @@ enum DayOfWeek(name: String, ordinal: Int) case SATURDAY extends DayOfWeek("SATURDAY", 5) /** - * The singleton instance for the day-of-week of Sunday. This has the numeric value of {@code 7}. + * The singleton instance for the day-of-week of Sunday. This has the numeric value of {@code 7} . */ case SUNDAY extends DayOfWeek("SUNDAY", 6) @@ -212,7 +213,7 @@ enum DayOfWeek(name: String, ordinal: Int) * If the field is {@link ChronoField#DAY_OF_WEEK DAY_OF_WEEK} then this method returns true. All * other {@code ChronoField} instances will return false. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the field is supported is determined by the field. * @@ -238,7 +239,7 @@ enum DayOfWeek(name: String, ordinal: Int) * from 1 to 7, will be returned. All other {@code ChronoField} instances will throw a {@code * DateTimeException}. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the range can be obtained is determined by the field. * @@ -258,7 +259,7 @@ enum DayOfWeek(name: String, ordinal: Int) field.rangeRefinedBy(this) /** - * Gets the value of the specified field from this day-of-week as an {@code int}. + * Gets the value of the specified field from this day-of-week as an {@code int} . * * This queries this day-of-week for the value for the specified field. The returned value will * always be within the valid range of values for the field. If it is not possible to return the @@ -268,7 +269,7 @@ enum DayOfWeek(name: String, ordinal: Int) * from 1 to 7, will be returned. All other {@code ChronoField} instances will throw a {@code * DateTimeException}. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -279,7 +280,7 @@ enum DayOfWeek(name: String, ordinal: Int) * @throws DateTimeException * if a value for the field cannot be obtained * @throws DateTimeException - * if the range of valid values for the field exceeds an { @code int} + * if the range of valid values for the field exceeds an {@code int} * @throws DateTimeException * if the value is outside the range of valid values for the field * @throws ArithmeticException @@ -292,7 +293,7 @@ enum DayOfWeek(name: String, ordinal: Int) range(field).checkValidIntValue(getLong(field), field) /** - * Gets the value of the specified field from this day-of-week as a {@code long}. + * Gets the value of the specified field from this day-of-week as a {@code long} . * * This queries this day-of-week for the value for the specified field. If it is not possible to * return the value, because the field is not supported or for some other reason, an exception is @@ -302,7 +303,7 @@ enum DayOfWeek(name: String, ordinal: Int) * from 1 to 7, will be returned. All other {@code ChronoField} instances will throw a {@code * DateTimeException}. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -397,7 +398,7 @@ enum DayOfWeek(name: String, ordinal: Int) * The adjustment is equivalent to using {@link Temporal#with(TemporalField, long)} passing {@link * ChronoField#DAY_OF_WEEK} as the field. Note that this adjusts forwards or backwards within a * Monday to Sunday week. See {@link WeekFields#dayOfWeek} for localized week start days. See - * {@link TemporalAdjusters} for other adjusters with more control, such as {@code next(MONDAY)}. + * {@link TemporalAdjusters} for other adjusters with more control, such as {@code next(MONDAY)} . * * In most cases, it is clearer to reverse the calling pattern by using {@link * Temporal#with(TemporalAdjuster)}:
     // these two lines are equivalent, but the second
    diff --git a/core/shared/src/main/scala-3/org/threeten/bp/Month.scala b/core/shared/src/main/scala-3/org/threeten/bp/Month.scala
    index c46abd64f..ea703f864 100644
    --- a/core/shared/src/main/scala-3/org/threeten/bp/Month.scala
    +++ b/core/shared/src/main/scala-3/org/threeten/bp/Month.scala
    @@ -60,8 +60,8 @@ import org.threeten.bp.temporal.ValueRange
      * is recommended that applications use the enum rather than the {@code int} value to ensure code
      * clarity.
      *
    - * Do not use {@code ordinal()} to obtain the numeric representation of {@code Month}. Use {@code
    - * getValue()} instead.
    + * Do not use {@code ordinal()} to obtain the numeric representation of {@code Month} . Use
    + * {@code getValue()} instead.
      *
      * This enum represents a common concept that is found in many calendar systems. As such, this enum
      * may be used by any calendar system that has the month-of-year concept defined exactly equivalent
    @@ -100,21 +100,21 @@ object Month {
        * Obtains an instance of {@code Month} from a temporal object.
        *
        * A {@code TemporalAccessor} represents some form of date and time information. This factory
    -   * converts the arbitrary temporal object to an instance of {@code Month}.
    +   * converts the arbitrary temporal object to an instance of {@code Month} .
        *
        * The conversion extracts the {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} field. The
        * extraction is only permitted if the temporal object has an ISO chronology, or can be converted
    -   * to a {@code LocalDate}.
    +   * to a {@code LocalDate} .
        *
        * This method matches the signature of the functional interface {@link TemporalQuery} allowing it
    -   * to be used in queries via method reference, {@code Month::from}.
    +   * to be used in queries via method reference, {@code Month::from} .
        *
        * @param temporal
        *   the temporal object to convert, not null
        * @return
        *   the month-of-year, not null
        * @throws DateTimeException
    -   *   if unable to convert to a { @code Month}
    +   *   if unable to convert to a {@code Month}
        */
       def from(temporal: TemporalAccessor): Month = {
         var _temporal = temporal
    @@ -143,25 +143,25 @@ enum Month private (name: String, ordinal: Int)
     
       /**
        * The singleton instance for the month of January with 31 days. This has the numeric value of
    -   * {@code 1}.
    +   * {@code 1} .
        */
       case JANUARY extends Month("JANUARY", 0)
     
       /**
        * The singleton instance for the month of February with 28 days, or 29 in a leap year. This has
    -   * the numeric value of {@code 2}.
    +   * the numeric value of {@code 2} .
        */
       case FEBRUARY extends Month("FEBRUARY", 1)
     
       /**
        * The singleton instance for the month of March with 31 days. This has the numeric value of
    -   * {@code 3}.
    +   * {@code 3} .
        */
       case MARCH extends Month("MARCH", 2)
     
       /**
        * The singleton instance for the month of April with 30 days. This has the numeric value of
    -   * {@code 4}.
    +   * {@code 4} .
        */
       case APRIL extends Month("APRIL", 3)
     
    @@ -185,31 +185,31 @@ enum Month private (name: String, ordinal: Int)
     
       /**
        * The singleton instance for the month of August with 31 days. This has the numeric value of
    -   * {@code 8}.
    +   * {@code 8} .
        */
       case AUGUST extends Month("AUGUST", 7)
     
       /**
        * The singleton instance for the month of September with 30 days. This has the numeric value of
    -   * {@code 9}.
    +   * {@code 9} .
        */
       case SEPTEMBER extends Month("SEPTEMBER", 8)
     
       /**
        * The singleton instance for the month of October with 31 days. This has the numeric value of
    -   * {@code 10}.
    +   * {@code 10} .
        */
       case OCTOBER extends Month("OCTOBER", 9)
     
       /**
        * The singleton instance for the month of November with 30 days. This has the numeric value of
    -   * {@code 11}.
    +   * {@code 11} .
        */
       case NOVEMBER extends Month("NOVEMBER", 10)
     
       /**
        * The singleton instance for the month of December with 31 days. This has the numeric value of
    -   * {@code 12}.
    +   * {@code 12} .
        */
       case DECEMBER extends Month("DECEMBER", 11)
     
    @@ -253,7 +253,7 @@ enum Month private (name: String, ordinal: Int)
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then this method returns true.
        * All other {@code ChronoField} instances will return false.
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the
        * argument. Whether the field is supported is determined by the field.
        *
    @@ -277,9 +277,9 @@ enum Month private (name: String, ordinal: Int)
        *
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then the range of the
        * month-of-year, from 1 to 12, will be returned. All other {@code ChronoField} instances will
    -   * throw a {@code DateTimeException}.
    +   * throw a {@code DateTimeException} .
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the
        * argument. Whether the range can be obtained is determined by the field.
        *
    @@ -299,7 +299,7 @@ enum Month private (name: String, ordinal: Int)
           field.rangeRefinedBy(this)
     
       /**
    -   * Gets the value of the specified field from this month-of-year as an {@code int}.
    +   * Gets the value of the specified field from this month-of-year as an {@code int} .
        *
        * This queries this month for the value for the specified field. The returned value will always
        * be within the valid range of values for the field. If it is not possible to return the value,
    @@ -307,9 +307,9 @@ enum Month private (name: String, ordinal: Int)
        *
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then the value of the
        * month-of-year, from 1 to 12, will be returned. All other {@code ChronoField} instances will
    -   * throw a {@code DateTimeException}.
    +   * throw a {@code DateTimeException} .
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument.
        * Whether the value can be obtained, and what the value represents, is determined by the field.
        *
    @@ -320,7 +320,7 @@ enum Month private (name: String, ordinal: Int)
        * @throws DateTimeException
        *   if a value for the field cannot be obtained
        * @throws DateTimeException
    -   *   if the range of valid values for the field exceeds an { @code int}
    +   *   if the range of valid values for the field exceeds an {@code int}
        * @throws DateTimeException
        *   if the value is outside the range of valid values for the field
        * @throws ArithmeticException
    @@ -333,16 +333,16 @@ enum Month private (name: String, ordinal: Int)
           range(field).checkValidIntValue(getLong(field), field)
     
       /**
    -   * Gets the value of the specified field from this month-of-year as a {@code long}.
    +   * Gets the value of the specified field from this month-of-year as a {@code long} .
        *
        * This queries this month for the value for the specified field. If it is not possible to return
        * the value, because the field is not supported or for some other reason, an exception is thrown.
        *
        * If the field is {@link ChronoField#MONTH_OF_YEAR MONTH_OF_YEAR} then the value of the
        * month-of-year, from 1 to 12, will be returned. All other {@code ChronoField} instances will
    -   * throw a {@code DateTimeException}.
    +   * throw a {@code DateTimeException} .
        *
    -   * If the field is not a {@code ChronoField}, then the result of this method is obtained by
    +   * If the field is not a {@code ChronoField} , then the result of this method is obtained by
        * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument.
        * Whether the value can be obtained, and what the value represents, is determined by the field.
        *
    diff --git a/core/shared/src/main/scala-3/org/threeten/bp/chrono/HijrahEra.scala b/core/shared/src/main/scala-3/org/threeten/bp/chrono/HijrahEra.scala
    index 1d28e44d9..54a4461ed 100644
    --- a/core/shared/src/main/scala-3/org/threeten/bp/chrono/HijrahEra.scala
    +++ b/core/shared/src/main/scala-3/org/threeten/bp/chrono/HijrahEra.scala
    @@ -68,7 +68,7 @@ object HijrahEra {
      * The Hijrah calendar system has two eras. The date {@code 0001-01-01 (Hijrah)} is {@code 622-06-19
      * (ISO)}.
      *
    - * Do not use {@code ordinal()} to obtain the numeric representation of {@code HijrahEra}. Use
    + * Do not use {@code ordinal()} to obtain the numeric representation of {@code HijrahEra} . Use
      * {@code getValue()} instead.
      *
      * 

    Specification for implementors

    This is an immutable and thread-safe enum. diff --git a/core/shared/src/main/scala-3/org/threeten/bp/chrono/IsoEra.scala b/core/shared/src/main/scala-3/org/threeten/bp/chrono/IsoEra.scala index 4625e136a..8532e0326 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/chrono/IsoEra.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/chrono/IsoEra.scala @@ -63,7 +63,7 @@ object IsoEra { * \- 'Current era' (CE) for years from 0001-01-01 (ISO) and 'Before current era' (BCE) for years * before that. * - * Do not use {@code ordinal()} to obtain the numeric representation of {@code IsoEra}. Use + * Do not use {@code ordinal()} to obtain the numeric representation of {@code IsoEra} . Use * {@code getValue()} instead. * *

    Specification for implementors

    This is an immutable and thread-safe enum. @@ -73,14 +73,14 @@ enum IsoEra(name: String, ordinal: Int) extends java.lang.Enum[IsoEra] with Era /** * The singleton instance for the era BCE, 'Before Current Era'. The 'ISO' part of the name * emphasizes that this differs from the BCE era in the Gregorian calendar system. This has the - * numeric value of {@code 0}. + * numeric value of {@code 0} . */ case BCE extends IsoEra("BCE", 0) /** * The singleton instance for the era CE, 'Current Era'. The 'ISO' part of the name emphasizes * that this differs from the CE era in the Gregorian calendar system. This has the numeric value - * of {@code 1}. + * of {@code 1} . */ case CE extends IsoEra("CE", 1) diff --git a/core/shared/src/main/scala-3/org/threeten/bp/chrono/MinguoEra.scala b/core/shared/src/main/scala-3/org/threeten/bp/chrono/MinguoEra.scala index ce3660ba7..b46e5327c 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/chrono/MinguoEra.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/chrono/MinguoEra.scala @@ -63,7 +63,7 @@ object MinguoEra { * The Minguo calendar system has two eras. The date {@code 0001-01-01 (Minguo)} is equal to {@code * 1912-01-01 (ISO)}. * - * Do not use {@code ordinal()} to obtain the numeric representation of {@code MinguoEra}. Use + * Do not use {@code ordinal()} to obtain the numeric representation of {@code MinguoEra} . Use * {@code getValue()} instead. * *

    Specification for implementors

    This is an immutable and thread-safe enum. @@ -72,13 +72,13 @@ enum MinguoEra(name: String, ordinal: Int) extends java.lang.Enum[MinguoEra] wit /** * The singleton instance for the era BEFORE_ROC, 'Before Republic of China'. This has the numeric - * value of {@code 0}. + * value of {@code 0} . */ case BEFORE_ROC extends MinguoEra("BEFORE_ROC", 0) /** * The singleton instance for the era ROC, 'Republic of China'. This has the numeric value of - * {@code 1}. + * {@code 1} . */ case ROC extends MinguoEra("ROC", 1) diff --git a/core/shared/src/main/scala-3/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala b/core/shared/src/main/scala-3/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala index 876addf5e..dcc2ca22a 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/format/internal/TTBPDateTimeFormatterBuilder.scala @@ -279,8 +279,8 @@ object TTBPDateTimeFormatterBuilder { * @param signStyle * the positive/negative sign style, not null * @param subsequentWidth - * the width of subsequent non-negative numbers, 0 or greater, - * -1 if fixed width due to active adjacent parsing + * the width of subsequent non-negative numbers, 0 or greater, -1 if fixed width due to active + * adjacent parsing */ private[format] class NumberPrinterParser private[format] ( private[format] val field: TemporalField, @@ -794,8 +794,8 @@ object TTBPDateTimeFormatterBuilder { * * The fractional value must be between 0 (inclusive) and 1 (exclusive). It can only be returned * if the {@link TemporalField#range() value range} is fixed. The value is obtained by - * calculation from the field range and a rounding mode of {@link RoundingMode#FLOOR FLOOR}. The - * calculation is inaccurate if the values do not run continuously from smallest to largest. + * calculation from the field range and a rounding mode of {@link RoundingMode#FLOOR FLOOR} . + * The calculation is inaccurate if the values do not run continuously from smallest to largest. * * For example, the fractional second-of-minute of 0.25 would be converted to 15, assuming the * standard definition of 60 seconds in a minute. diff --git a/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoField.scala b/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoField.scala index 50491e1f9..d1ab915e0 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoField.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoField.scala @@ -52,7 +52,7 @@ import org.threeten.bp.format.ResolverStyle * A standard set of fields. * * This set of fields provide field-based access to manipulate a date, time or date-time. The - * standard set of fields can be extended by implementing {@link TemporalField}. + * standard set of fields can be extended by implementing {@link TemporalField} . * * These fields are intended to be applicable in multiple calendar systems. For example, most * non-ISO calendar systems define dates as a year, month and day, just with slightly different @@ -80,7 +80,7 @@ enum ChronoField private ( * * This field is used to represent the nano-of-second handling any fraction of the second. * Implementations of {@code TemporalAccessor} should provide a value for this field if they can - * return a value for {@link #SECOND_OF_MINUTE}, {@link #SECOND_OF_DAY} or {@link + * return a value for {@link #SECOND_OF_MINUTE} , {@link #SECOND_OF_DAY} or {@link * #INSTANT_SECONDS} filling unknown precision with zero. * * When this field is used for setting a value, it should set as much precision as the object @@ -112,7 +112,7 @@ enum ChronoField private ( * * This field is used to represent the micro-of-second handling any fraction of the second. * Implementations of {@code TemporalAccessor} should provide a value for this field if they can - * return a value for {@link #SECOND_OF_MINUTE}, {@link #SECOND_OF_DAY} or {@link + * return a value for {@link #SECOND_OF_MINUTE} , {@link #SECOND_OF_DAY} or {@link * #INSTANT_SECONDS} filling unknown precision with zero. * * When this field is used for setting a value, it should behave in the same way as setting {@link @@ -145,7 +145,7 @@ enum ChronoField private ( * * This field is used to represent the milli-of-second handling any fraction of the second. * Implementations of {@code TemporalAccessor} should provide a value for this field if they can - * return a value for {@link #SECOND_OF_MINUTE}, {@link #SECOND_OF_DAY} or {@link + * return a value for {@link #SECOND_OF_MINUTE} , {@link #SECOND_OF_DAY} or {@link * #INSTANT_SECONDS} filling unknown precision with zero. * * When this field is used for setting a value, it should behave in the same way as setting {@link @@ -414,12 +414,12 @@ enum ChronoField private ( * The year within the era. * * This represents the concept of the year within the era. This field is typically used with - * {@link #ERA}. + * {@link #ERA} . * * The standard mental model for a date is based on three concepts - year, month and day. These - * map onto the {@code YEAR}, {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that + * map onto the {@code YEAR} , {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that * there is no reference to eras. The full model for a date requires four concepts - era, year, - * month and day. These map onto the {@code ERA}, {@code YEAR_OF_ERA}, {@code MONTH_OF_YEAR} and + * month and day. These map onto the {@code ERA} , {@code YEAR_OF_ERA} , {@code MONTH_OF_YEAR} and * {@code DAY_OF_MONTH} fields. Whether this field or {@code YEAR} is used depends on which mental * model is being used. See {@link ChronoLocalDate} for more discussion on this topic. * @@ -460,9 +460,9 @@ enum ChronoField private ( * showing the mapping from proleptic year to year-of-era. * * The standard mental model for a date is based on three concepts - year, month and day. These - * map onto the {@code YEAR}, {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that + * map onto the {@code YEAR} , {@code MONTH_OF_YEAR} and {@code DAY_OF_MONTH} fields. Note that * there is no reference to eras. The full model for a date requires four concepts - era, year, - * month and day. These map onto the {@code ERA}, {@code YEAR_OF_ERA}, {@code MONTH_OF_YEAR} and + * month and day. These map onto the {@code ERA} , {@code YEAR_OF_ERA} , {@code MONTH_OF_YEAR} and * {@code DAY_OF_MONTH} fields. Whether this field or {@code YEAR_OF_ERA} is used depends on which * mental model is being used. See {@link ChronoLocalDate} for more discussion on this topic. * @@ -484,7 +484,7 @@ enum ChronoField private ( * The era. * * This represents the concept of the era, which is the largest division of the time-line. This - * field is typically used with {@link #YEAR_OF_ERA}. + * field is typically used with {@link #YEAR_OF_ERA} . * * In the default ISO calendar system, there are two eras defined, 'BCE' and 'CE'. The era 'CE' is * the one currently in use and year-of-era runs from 1 to the maximum value. The era 'BCE' is the @@ -526,7 +526,7 @@ enum ChronoField private ( * A {@link ZoneOffset} represents the period of time that local time differs from UTC/Greenwich. * This is usually a fixed number of hours and minutes. It is equivalent to the {@link * ZoneOffset#getTotalSeconds() total amount} of the offset in seconds. For example, during the - * winter Paris has an offset of {@code +01:00}, which is 3600 seconds. + * winter Paris has an offset of {@code +01:00} , which is 3600 seconds. * * This field is strictly defined to have the same meaning in all calendar systems. This is * necessary to ensure interoperation between calendars. @@ -630,10 +630,10 @@ enum ChronoField private ( def checkValidValue(value: Long): Long = _range.checkValidValue(value, this) /** - * Checks that the specified value is valid and fits in an {@code int}. + * Checks that the specified value is valid and fits in an {@code int} . * * This validates that the value is within the outer range of valid values returned by {@link - * #range()}. It also checks that all valid values are within the bounds of an {@code int}. + * #range()}. It also checks that all valid values are within the bounds of an {@code int} . * * This method checks against the range of the field in the ISO-8601 calendar system. This range * may be incorrect for other calendar systems. Use {@link Chronology#range(ChronoField)} to diff --git a/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoUnit.scala b/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoUnit.scala index 1dc0d2b79..ffb362cce 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoUnit.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/temporal/ChronoUnit.scala @@ -40,7 +40,7 @@ import org.threeten.bp.chrono.ChronoZonedDateTime * A standard set of date periods units. * * This set of units provide unit-based access to manipulate a date, time or date-time. The standard - * set of units can be extended by implementing {@link TemporalUnit}. + * set of units can be extended by implementing {@link TemporalUnit} . * * These units are intended to be applicable in multiple calendar systems. For example, most non-ISO * calendar systems define units of years, months and days, just with slightly different rules. The @@ -99,7 +99,7 @@ enum ChronoUnit private (name: String, ordinal: Int, private val duration: Durat /** * Unit that represents the concept of a day. For the ISO calendar system, it is the standard day - * from midnight to midnight. The estimated duration of a day is {@code 24 Hours}. + * from midnight to midnight. The estimated duration of a day is {@code 24 Hours} . * * When used with other calendar systems it must correspond to the day defined by the rising and * setting of the Sun on Earth. It is not required that days begin at midnight - when converting @@ -125,7 +125,7 @@ enum ChronoUnit private (name: String, ordinal: Int, private val duration: Durat /** * Unit that represents the concept of a year. For the ISO calendar system, it is equal to 12 - * months. The estimated duration of a year is {@code 365.2425 Days}. + * months. The estimated duration of a year is {@code 365.2425 Days} . * * When used with other calendar systems it must correspond to an integral number of days or * months roughly equal to a year defined by the passage of the Earth around the Sun. @@ -162,7 +162,7 @@ enum ChronoUnit private (name: String, ordinal: Int, private val duration: Durat /** * Unit that represents the concept of an era. The ISO calendar system doesn't have eras thus it * is impossible to add an era to a date or date-time. The estimated duration of the era is - * artificially defined as {@code 1,000,000,000 Years}. + * artificially defined as {@code 1,000,000,000 Years} . * * When used with other calendar systems there are no restrictions on the unit. */ @@ -171,7 +171,7 @@ enum ChronoUnit private (name: String, ordinal: Int, private val duration: Durat /** * Artificial unit that represents the concept of forever. This is primarily used with {@link * TemporalField} to represent unbounded fields such as the year or era. The estimated duration of - * the era is artificially defined as the largest duration supported by {@code Duration}. + * the era is artificially defined as the largest duration supported by {@code Duration} . */ case FOREVER extends ChronoUnit("Forever", 15, Duration.ofSeconds(Long.MaxValue, 999999999)) diff --git a/core/shared/src/main/scala-3/org/threeten/bp/temporal/IsoFields.scala b/core/shared/src/main/scala-3/org/threeten/bp/temporal/IsoFields.scala index 299e569b5..43f2d1c40 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/temporal/IsoFields.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/temporal/IsoFields.scala @@ -158,7 +158,7 @@ object IsoFields { * * This allows a number of week-based-years to be added to, or subtracted from, a date. The unit * is equal to either 52 or 53 weeks. The estimated duration of a week-based-year is the same as - * that of a standard ISO year at {@code 365.2425 Days}. + * that of a standard ISO year at {@code 365.2425 Days} . * * The rules for addition add the number of week-based-years to the existing value for the * week-based-year field. If the resulting week-based-year only has 52 weeks, then the date will @@ -170,7 +170,7 @@ object IsoFields { /** * Unit that represents the concept of a quarter-year. For the ISO calendar system, it is equal to - * 3 months. The estimated duration of a quarter-year is one quarter of {@code 365.2425 Days}. + * 3 months. The estimated duration of a quarter-year is one quarter of {@code 365.2425 Days} . * * This unit is an immutable and thread-safe singleton. */ diff --git a/core/shared/src/main/scala-3/org/threeten/bp/temporal/JulianFields.scala b/core/shared/src/main/scala-3/org/threeten/bp/temporal/JulianFields.scala index f647834c2..c5a404e28 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/temporal/JulianFields.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/temporal/JulianFields.scala @@ -62,7 +62,7 @@ object JulianFields { * For date-times, 'JULIAN_DAY.getFrom()' assumes the same value from midnight until just before * the next midnight. When 'JULIAN_DAY.adjustInto()' is applied to a date-time, the time of day * portion remains unaltered. 'JULIAN_DAY.adjustInto()' and 'JULIAN_DAY.getFrom()' only apply to - * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY}. A {@link + * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY} . A {@link * DateTimeException} is thrown for any other type of object. * *

    Astronomical and Scientific Notes

    The standard astronomical definition uses a fraction @@ -94,15 +94,15 @@ object JulianFields { * * This is an integer-based version of the Modified Julian Day Number. Modified Julian Day (MJD) * is a well-known system that counts days continuously. It is defined relative to astronomical - * Julian Day as {@code MJD = JD - 2400000.5}. Each Modified Julian Day runs from midnight to + * Julian Day as {@code MJD = JD - 2400000.5} . Each Modified Julian Day runs from midnight to * midnight. The field always refers to the local date-time, ignoring the offset or zone. * * For date-times, 'MODIFIED_JULIAN_DAY.getFrom()' assumes the same value from midnight until just * before the next midnight. When 'MODIFIED_JULIAN_DAY.adjustInto()' is applied to a date-time, * the time of day portion remains unaltered. 'MODIFIED_JULIAN_DAY.adjustInto()' and * 'MODIFIED_JULIAN_DAY.getFrom()' only apply to {@code Temporal} objects that can be converted - * into {@link ChronoField#EPOCH_DAY}. A {@link DateTimeException} is thrown for any other type of - * object. + * into {@link ChronoField#EPOCH_DAY} . A {@link DateTimeException} is thrown for any other type + * of object. * * This implementation is an integer version of MJD with the decimal part rounded to floor. * @@ -133,7 +133,7 @@ object JulianFields { * For date-times, 'RATA_DIE.getFrom()' assumes the same value from midnight until just before the * next midnight. When 'RATA_DIE.adjustInto()' is applied to a date-time, the time of day portion * remains unaltered. 'MODIFIED_JULIAN_DAY.adjustInto()' and 'RATA_DIE.getFrom()' only apply to - * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY}. A {@link + * {@code Temporal} objects that can be converted into {@link ChronoField#EPOCH_DAY} . A {@link * DateTimeException} is thrown for any other type of object. */ lazy val RATA_DIE: TemporalField = Field.RATA_DIE diff --git a/core/shared/src/main/scala-3/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala b/core/shared/src/main/scala-3/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala index b10b69a5b..f6ae15802 100644 --- a/core/shared/src/main/scala-3/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala +++ b/core/shared/src/main/scala-3/org/threeten/bp/zone/ZoneOffsetTransitionRule.scala @@ -60,15 +60,15 @@ object ZoneOffsetTransitionRule { /** * Obtains an instance defining the yearly rule to create transitions between two offsets. * - * Applications should normally obtain an instance from {@link ZoneRules}. This factory is only - * intended for use when creating {@link ZoneRules}. + * Applications should normally obtain an instance from {@link ZoneRules} . This factory is only + * intended for use when creating {@link ZoneRules} . * * @param month * the month of the month-day of the first day of the cutover week, not null * @param dayOfMonthIndicator * the day of the month-day of the cutover week, positive if the week is that day or later, * negative if the week is that day or earlier, counting from the last day of the month, from - * -28 to 31 excluding 0 + * -28 to 31 excluding 0 * @param dayOfWeek * the required day-of-week, null if the month-day should not be changed * @param time diff --git a/core/shared/src/main/scala/org/threeten/bp/Clock.scala b/core/shared/src/main/scala/org/threeten/bp/Clock.scala index ab2228149..df7ae4bf0 100644 --- a/core/shared/src/main/scala/org/threeten/bp/Clock.scala +++ b/core/shared/src/main/scala/org/threeten/bp/Clock.scala @@ -42,16 +42,16 @@ object Clock { * Obtains a clock that returns the current instant using the best available system clock, * converting to date and time using the UTC time-zone. * - * This clock, rather than {@link #systemDefaultZone()}, should be used when you need the current + * This clock, rather than {@link #systemDefaultZone()} , should be used when you need the current * instant without the date or time. * * This clock is based on the best available system clock. This may use {@link * System#currentTimeMillis()}, or a higher resolution clock if one is available. * - * Conversion from instant to date or time uses the {@link ZoneOffset#UTC UTC time-zone}. + * Conversion from instant to date or time uses the {@link ZoneOffset#UTC UTC time-zone} . * - * The returned implementation is immutable, thread-safe and {@code Serializable}. It is - * equivalent to {@code system(ZoneOffset.UTC)}. + * The returned implementation is immutable, thread-safe and {@code Serializable} . It is + * equivalent to {@code system(ZoneOffset.UTC)} . * * @return * a clock that uses the best available system clock in the UTC zone, not null @@ -70,8 +70,8 @@ object Clock { * #systemUTC() UTC clock} should be used when you need the current instant without the date or * time. * - * The returned implementation is immutable, thread-safe and {@code Serializable}. It is - * equivalent to {@code system(ZoneId.systemDefault())}. + * The returned implementation is immutable, thread-safe and {@code Serializable} . It is + * equivalent to {@code system(ZoneId.systemDefault())} . * * @return * a clock that uses the best available system clock in the default zone, not null @@ -88,7 +88,7 @@ object Clock { * * Conversion from instant to date or time uses the specified time-zone. * - * The returned implementation is immutable, thread-safe and {@code Serializable}. + * The returned implementation is immutable, thread-safe and {@code Serializable} . * * @param zone * the time-zone to use to convert the instant to date-time, not null @@ -106,14 +106,14 @@ object Clock { * * This clock will always have the nano-of-second field set to zero. This ensures that the visible * time ticks in whole seconds. The underlying clock is the best available system clock, - * equivalent to using {@link #system(ZoneId)}. + * equivalent to using {@link #system(ZoneId)} . * * Implementations may use a caching strategy for performance reasons. As such, it is possible * that the start of the second observed via this clock will be later than that observed directly * via the underlying clock. * - * The returned implementation is immutable, thread-safe and {@code Serializable}. It is - * equivalent to {@code tick(system(zone), Duration.ofSeconds(1))}. + * The returned implementation is immutable, thread-safe and {@code Serializable} . It is + * equivalent to {@code tick(system(zone), Duration.ofSeconds(1))} . * * @param zone * the time-zone to use to convert the instant to date-time, not null @@ -128,14 +128,14 @@ object Clock { * * This clock will always have the nano-of-second and second-of-minute fields set to zero. This * ensures that the visible time ticks in whole minutes. The underlying clock is the best - * available system clock, equivalent to using {@link #system(ZoneId)}. + * available system clock, equivalent to using {@link #system(ZoneId)} . * * Implementations may use a caching strategy for performance reasons. As such, it is possible * that the start of the minute observed via this clock will be later than that observed directly * via the underlying clock. * - * The returned implementation is immutable, thread-safe and {@code Serializable}. It is - * equivalent to {@code tick(system(zone), Duration.ofMinutes(1))}. + * The returned implementation is immutable, thread-safe and {@code Serializable} . It is + * equivalent to {@code tick(system(zone), Duration.ofMinutes(1))} . * * @param zone * the time-zone to use to convert the instant to date-time, not null @@ -198,7 +198,7 @@ object Clock { * sense. The main use case for this is in testing, where the fixed clock ensures tests are not * dependent on the current clock. * - * The returned implementation is immutable, thread-safe and {@code Serializable}. + * The returned implementation is immutable, thread-safe and {@code Serializable} . * * @param fixedInstant * the instant to use as the clock, not null @@ -378,7 +378,7 @@ object Clock { * * Instances of this class are used to find the current instant, which can be interpreted using the * stored time-zone to find the current date and time. As such, a clock can be used instead of - * {@link System#currentTimeMillis()} and {@link TimeZone#getDefault()}. + * {@link System#currentTimeMillis()} and {@link TimeZone#getDefault()} . * * Use of a {@code Clock} is optional. All key date-time classes also have a {@code now()} factory * method that uses the system clock in the default time zone. The primary purpose of this @@ -393,7 +393,7 @@ object Clock { * to be used during testing. * * The {@code system} factory methods provide clocks based on the best available system clock This - * may use {@link System#currentTimeMillis()}, or a higher resolution clock if one is available. + * may use {@link System#currentTimeMillis()} , or a higher resolution clock if one is available. * *

    Specification for implementors

    This abstract class must be implemented with care to * ensure other operate correctly. All implementations that can be instantiated must be final, @@ -442,12 +442,12 @@ abstract class Clock protected () { * Gets the current millisecond instant of the clock. * * This returns the millisecond-based instant, measured from 1970-01-01T00:00 UTC. This is - * equivalent to the definition of {@link System#currentTimeMillis()}. + * equivalent to the definition of {@link System#currentTimeMillis()} . * * Most applications should avoid this method and use {@link Instant} to represent an instant on * the time-line rather than a raw millisecond value. This method is provided to allow the use of * the clock in high performance use cases where the creation of an object would be unacceptable. - * The default implementation currently calls {@link #instant()}. + * The default implementation currently calls {@link #instant()} . * * @return * the current millisecond instant from this clock, measured from the Java epoch of diff --git a/core/shared/src/main/scala/org/threeten/bp/Duration.scala b/core/shared/src/main/scala/org/threeten/bp/Duration.scala index fc7eda6ad..67b780818 100644 --- a/core/shared/src/main/scala/org/threeten/bp/Duration.scala +++ b/core/shared/src/main/scala/org/threeten/bp/Duration.scala @@ -87,9 +87,9 @@ object Duration { * @param days * the number of days, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws ArithmeticException - * if the input days exceeds the capacity of { @code Duration} + * if the input days exceeds the capacity of {@code Duration} */ def ofDays(days: Long): Duration = create(Math.multiplyExact(days, 86400L), 0) @@ -102,9 +102,9 @@ object Duration { * @param hours * the number of hours, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws ArithmeticException - * if the input hours exceeds the capacity of { @code Duration} + * if the input hours exceeds the capacity of {@code Duration} */ def ofHours(hours: Long): Duration = create(Math.multiplyExact(hours, 3600L), 0) @@ -117,9 +117,9 @@ object Duration { * @param minutes * the number of minutes, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws ArithmeticException - * if the input minutes exceeds the capacity of { @code Duration} + * if the input minutes exceeds the capacity of {@code Duration} */ def ofMinutes(minutes: Long): Duration = create(Math.multiplyExact(minutes, 60L), 0) @@ -131,7 +131,7 @@ object Duration { * @param seconds * the number of seconds, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null */ def ofSeconds(seconds: Long): Duration = create(seconds, 0) @@ -150,9 +150,9 @@ object Duration { * @param nanoAdjustment * the nanosecond adjustment to the number of seconds, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws ArithmeticException - * if the adjustment causes the seconds to exceed the capacity of { @code Duration} + * if the adjustment causes the seconds to exceed the capacity of {@code Duration} */ def ofSeconds(seconds: Long, nanoAdjustment: Long): Duration = { val secs: Long = Math.addExact(seconds, Math.floorDiv(nanoAdjustment, NANOS_PER_SECOND.toLong)) @@ -168,7 +168,7 @@ object Duration { * @param millis * the number of milliseconds, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null */ def ofMillis(millis: Long): Duration = { var secs: Long = millis / 1000 @@ -188,7 +188,7 @@ object Duration { * @param nanos * the number of nanoseconds, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null */ def ofNanos(nanos: Long): Duration = { var secs: Long = nanos / NANOS_PER_SECOND @@ -214,7 +214,7 @@ object Duration { * @param unit * the unit that the duration is measured in, must have an exact duration, not null * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws DateTimeException * if the period unit has an estimated duration * @throws ArithmeticException @@ -236,7 +236,7 @@ object Duration { * @param amount * the amount to convert, not null * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws DateTimeException * if the amount cannot be converted * @throws ArithmeticException @@ -258,7 +258,7 @@ object Duration { * * Obtains a {@code Duration} representing the duration between two instants. This calculates the * duration between two temporal objects of the same type. The difference in seconds is calculated - * using {@link Temporal#until(Temporal, TemporalUnit)}. The difference in nanoseconds is + * using {@link Temporal#until(Temporal, TemporalUnit)} . The difference in nanoseconds is * calculated using by querying the {@link ChronoField#NANO_OF_SECOND NANO_OF_SECOND} field. * * The result of this method can be a negative period if the end is before the start. To guarantee @@ -269,11 +269,11 @@ object Duration { * @param endExclusive * the end instant, exclusive, not null * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws DateTimeException * if the seconds between the temporals cannot be obtained * @throws ArithmeticException - * if the calculation exceeds the capacity of { @code Duration} + * if the calculation exceeds the capacity of {@code Duration} */ def between(startInclusive: Temporal, endExclusive: Temporal): Duration = { var secs: Long = startInclusive.until(endExclusive, SECONDS) @@ -298,7 +298,7 @@ object Duration { } /** - * Obtains a {@code Duration} from a text string such as {@code PnDTnHnMn.nS}. + * Obtains a {@code Duration} from a text string such as {@code PnDTnHnMn.nS} . * * This will parse a textual representation of a duration, including the string produced by {@code * toString()}. The formats accepted are based on the ISO-8601 duration format {@code @@ -313,7 +313,7 @@ object Duration { * sections must be present, and if "T" is present there must be at least one section after the * "T". The number part of each section must consist of one or more ASCII digits. The number may * be prefixed by the ASCII negative or positive symbol. The number of days, hours and minutes - * must parse to a {@code long}. The number of seconds must parse to a {@code long} with optional + * must parse to a {@code long} . The number of seconds must parse to a {@code long} with optional * fraction. The decimal point may be either a dot or a comma. The fractional part may have from * zero to 9 digits. * @@ -452,7 +452,7 @@ object Duration { * @param seconds * the number of seconds, up to scale 9, positive or negative * @return - * a { @code Duration}, not null + * a {@code Duration} , not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -475,11 +475,11 @@ object Duration { * daylight savings effects. See {@link Period} for the date-based equivalent to this class. * * A physical duration could be of infinite length. For practicality, the duration is stored with - * constraints similar to {@link Instant}. The duration uses nanosecond resolution with a maximum - * value of the seconds that can be held in a {@code long}. This is greater than the current + * constraints similar to {@link Instant} . The duration uses nanosecond resolution with a maximum + * value of the seconds that can be held in a {@code long} . This is greater than the current * estimated age of the universe. * - * The range of a duration requires the storage of a number larger than a {@code long}. To achieve + * The range of a duration requires the storage of a number larger than a {@code long} . To achieve * this, the class stores a {@code long} representing seconds and an {@code int} representing * nanosecond-of-second, which will always be between 0 and 999,999,999. * @@ -539,7 +539,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * * The length of the duration is stored using two fields - seconds and nanoseconds. The * nanoseconds part is a value from 0 to 999,999,999 that is an adjustment to the length in - * seconds. The total duration is defined by calling this method and {@link #getNano()}. + * seconds. The total duration is defined by calling this method and {@link #getNano()} . * * A {@code Duration} represents a directed distance between two points on the time-line. A * negative duration is expressed by the negative sign of the seconds part. A duration of -1 @@ -555,7 +555,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * * The length of the duration is stored using two fields - seconds and nanoseconds. The * nanoseconds part is a value from 0 to 999,999,999 that is an adjustment to the length in - * seconds. The total duration is defined by calling this method and {@link #getSeconds()}. + * seconds. The total duration is defined by calling this method and {@link #getSeconds()} . * * A {@code Duration} represents a directed distance between two points on the time-line. A * negative duration is expressed by the negative sign of the seconds part. A duration of -1 @@ -577,7 +577,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param seconds * the seconds to represent, may be negative * @return - * a { @code Duration} based on this period with the requested seconds, not null + * a {@code Duration} based on this period with the requested seconds, not null */ def withSeconds(seconds: Long): Duration = Duration.create(seconds, nanos) @@ -592,7 +592,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param nanoOfSecond * the nano-of-second to represent, from 0 to 999,999,999 * @return - * a { @code Duration} based on this period with the requested nano-of-second, not null + * a {@code Duration} based on this period with the requested nano-of-second, not null * @throws DateTimeException * if the nano-of-second is invalid */ @@ -609,7 +609,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param duration * the duration to add, positive or negative, not null * @return - * a { @code Duration} based on this duration with the specified duration added, not null + * a {@code Duration} based on this duration with the specified duration added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -630,7 +630,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param unit * the unit that the period is measured in, must have an exact duration, not null * @return - * a { @code Duration} based on this duration with the specified duration added, not null + * a {@code Duration} based on this duration with the specified duration added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -667,7 +667,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param daysToAdd * the days to add, positive or negative * @return - * a { @code Duration} based on this duration with the specified days added, not null + * a {@code Duration} based on this duration with the specified days added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -682,7 +682,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param hoursToAdd * the hours to add, positive or negative * @return - * a { @code Duration} based on this duration with the specified hours added, not null + * a {@code Duration} based on this duration with the specified hours added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -697,7 +697,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param minutesToAdd * the minutes to add, positive or negative * @return - * a { @code Duration} based on this duration with the specified minutes added, not null + * a {@code Duration} based on this duration with the specified minutes added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -712,7 +712,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param secondsToAdd * the seconds to add, positive or negative * @return - * a { @code Duration} based on this duration with the specified seconds added, not null + * a {@code Duration} based on this duration with the specified seconds added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -726,7 +726,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param millisToAdd * the milliseconds to add, positive or negative * @return - * a { @code Duration} based on this duration with the specified milliseconds added, not null + * a {@code Duration} based on this duration with the specified milliseconds added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -741,7 +741,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param nanosToAdd * the nanoseconds to add, positive or negative * @return - * a { @code Duration} based on this duration with the specified nanoseconds added, not null + * a {@code Duration} based on this duration with the specified nanoseconds added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -757,7 +757,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param nanosToAdd * the nanos to add, positive or negative * @return - * a { @code Duration} based on this duration with the specified seconds added, not null + * a {@code Duration} based on this duration with the specified seconds added, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -780,7 +780,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param duration * the duration to subtract, positive or negative, not null * @return - * a { @code Duration} based on this duration with the specified duration subtracted, not null + * a {@code Duration} based on this duration with the specified duration subtracted, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -806,7 +806,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param unit * the unit that the period is measured in, must have an exact duration, not null * @return - * a { @code Duration} based on this duration with the specified duration subtracted, not null + * a {@code Duration} based on this duration with the specified duration subtracted, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -822,7 +822,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param daysToSubtract * the days to subtract, positive or negative * @return - * a { @code Duration} based on this duration with the specified days subtracted, not null + * a {@code Duration} based on this duration with the specified days subtracted, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -838,7 +838,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param hoursToSubtract * the hours to subtract, positive or negative * @return - * a { @code Duration} based on this duration with the specified hours subtracted, not null + * a {@code Duration} based on this duration with the specified hours subtracted, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -854,7 +854,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param minutesToSubtract * the minutes to subtract, positive or negative * @return - * a { @code Duration} based on this duration with the specified minutes subtracted, not null + * a {@code Duration} based on this duration with the specified minutes subtracted, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -870,7 +870,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param secondsToSubtract * the seconds to subtract, positive or negative * @return - * a { @code Duration} based on this duration with the specified seconds subtracted, not null + * a {@code Duration} based on this duration with the specified seconds subtracted, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -886,7 +886,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param millisToSubtract * the milliseconds to subtract, positive or negative * @return - * a { @code Duration} based on this duration with the specified milliseconds subtracted, not + * a {@code Duration} based on this duration with the specified milliseconds subtracted, not * null * @throws ArithmeticException * if numeric overflow occurs @@ -903,8 +903,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param nanosToSubtract * the nanoseconds to subtract, positive or negative * @return - * a { @code Duration} based on this duration with the specified nanoseconds subtracted, not - * null + * a {@code Duration} based on this duration with the specified nanoseconds subtracted, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -920,7 +919,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param multiplicand * the value to multiply the duration by, positive or negative * @return - * a { @code Duration} based on this duration multiplied by the specified scalar, not null + * a {@code Duration} based on this duration multiplied by the specified scalar, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -937,7 +936,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * @param divisor * the value to divide the duration by, positive or negative, not zero * @return - * a { @code Duration} based on this duration divided by the specified divisor, not null + * a {@code Duration} based on this duration divided by the specified divisor, not null * @throws ArithmeticException * if the divisor is zero * @throws ArithmeticException @@ -950,7 +949,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) /** * Converts this duration to the total length in seconds and fractional nanoseconds expressed as a - * {@code BigDecimal}. + * {@code BigDecimal} . * * @return * the total length of the duration in seconds, with a scale of 9, not null @@ -990,12 +989,12 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * Returns a copy of this duration with the length negated. * * This method swaps the sign of the total length of this duration. For example, {@code PT1.3S} - * will be returned as {@code PT-1.3S}. + * will be returned as {@code PT-1.3S} . * * This instance is immutable and unaffected by this method call. * * @return - * a { @code Duration} based on this duration with the amount negated, not null + * a {@code Duration} based on this duration with the amount negated, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -1005,12 +1004,12 @@ final class Duration private (private val seconds: Long, private val nanos: Int) * Returns a copy of this duration with a positive length. * * This method returns a positive duration by effectively removing the sign from any negative - * total length. For example, {@code PT-1.3S} will be returned as {@code PT1.3S}. + * total length. For example, {@code PT-1.3S} will be returned as {@code PT1.3S} . * * This instance is immutable and unaffected by this method call. * * @return - * a { @code Duration} based on this duration with an absolute length, not null + * a {@code Duration} based on this duration with an absolute length, not null * @throws ArithmeticException * if numeric overflow occurs */ @@ -1200,7 +1199,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) def toMillisPart: Int = (nanos / Duration.NANOS_PER_MILLI).toInt /** - * Converts this duration to the total length in nanoseconds expressed as a {@code long}. + * Converts this duration to the total length in nanoseconds expressed as a {@code long} . * * If this duration is too large to fit in a {@code long} nanoseconds, then an exception is * thrown. @@ -1231,10 +1230,10 @@ final class Duration private (private val seconds: Long, private val nanos: Int) def toNanosPart: Int = nanos /** - * Compares this duration to the specified {@code Duration}. + * Compares this duration to the specified {@code Duration} . * * The comparison is based on the total length of the durations. It is "consistent with equals", - * as defined by {@link Comparable}. + * as defined by {@link Comparable} . * * @param otherDuration * the other duration to compare to, not null @@ -1250,7 +1249,7 @@ final class Duration private (private val seconds: Long, private val nanos: Int) override def compareTo(other: Duration): Int = compare(other) /** - * Checks if this duration is equal to the specified {@code Duration}. + * Checks if this duration is equal to the specified {@code Duration} . * * The comparison is based on the total length of the durations. * @@ -1276,16 +1275,16 @@ final class Duration private (private val seconds: Long, private val nanos: Int) /** * A string representation of this duration using ISO-8601 seconds based representation, such as - * {@code PT8H6M12.345S}. + * {@code PT8H6M12.345S} . * - * The format of the returned string will be {@code PTnHnMnS}, where n is the relevant hours, + * The format of the returned string will be {@code PTnHnMnS} , where n is the relevant hours, * minutes or seconds part of the duration. Any fractional seconds are placed after a decimal * point i the seconds section. If a section has a zero value, it is omitted. The hours, minutes * and seconds will all have the same sign. * * Examples:
     "20.345 seconds" -> "PT20.345S "15 minutes" (15 * 60 seconds) -> "PT15M" "10
        * hours" (10 * 3600 seconds) -> "PT10H" "2 days" (2 * 86400 seconds) -> "PT48H" 
    Note that - * multiples of 24 hours are not output as days to avoid confusion with {@code Period}. + * multiples of 24 hours are not output as days to avoid confusion with {@code Period} . * * @return * an ISO-8601 representation of this duration, not null diff --git a/core/shared/src/main/scala/org/threeten/bp/Instant.scala b/core/shared/src/main/scala/org/threeten/bp/Instant.scala index 800b33d9e..4ea44fb92 100644 --- a/core/shared/src/main/scala/org/threeten/bp/Instant.scala +++ b/core/shared/src/main/scala/org/threeten/bp/Instant.scala @@ -79,10 +79,10 @@ object Instant { private def MILLIS_PER_SEC = 1000 /** - * The minimum supported {@code Instant}, '-1000000000-01-01T00:00Z'. This could be used by an + * The minimum supported {@code Instant} , '-1000000000-01-01T00:00Z'. This could be used by an * application as a "far past" instant. * - * This is one year earlier than the minimum {@code LocalDateTime}. This provides sufficient + * This is one year earlier than the minimum {@code LocalDateTime} . This provides sufficient * values to handle the range of {@code ZoneOffset} which affect the instant in addition to the * local date-time. The value is also chosen such that the value of the year fits in an {@code * int}. @@ -90,12 +90,12 @@ object Instant { lazy val MIN: Instant = Instant.ofEpochSecond(MIN_SECOND, 0) /** - * The maximum supported {@code Instant}, '1000000000-12-31T23:59:59.999999999Z'. This could be + * The maximum supported {@code Instant} , '1000000000-12-31T23:59:59.999999999Z'. This could be * used by an application as a "far future" instant. * - * This is one year later than the maximum {@code LocalDateTime}. This provides sufficient values + * This is one year later than the maximum {@code LocalDateTime} . This provides sufficient values * to handle the range of {@code ZoneOffset} which affect the instant in addition to the local - * date-time. The value is also chosen such that the value of the year fits in an {@code int}. + * date-time. The value is also chosen such that the value of the year fits in an {@code int} . */ lazy val MAX: Instant = Instant.ofEpochSecond(MAX_SECOND, 999999999) @@ -118,7 +118,7 @@ object Instant { * This will query the specified clock to obtain the current time. * * Using this method allows the use of an alternate clock for testing. The alternate clock may be - * introduced using {@link Clock dependency injection}. + * introduced using {@link Clock dependency injection} . * * @param clock * the clock to use, not null @@ -195,20 +195,20 @@ object Instant { * Obtains an instance of {@code Instant} from a temporal object. * * A {@code TemporalAccessor} represents some form of date and time information. This factory - * converts the arbitrary temporal object to an instance of {@code Instant}. + * converts the arbitrary temporal object to an instance of {@code Instant} . * * The conversion extracts the {@link ChronoField#INSTANT_SECONDS INSTANT_SECONDS} and {@link * ChronoField#NANO_OF_SECOND NANO_OF_SECOND} fields. * * This method matches the signature of the functional interface {@link TemporalQuery} allowing it - * to be used as a query via method reference, {@code Instant::from}. + * to be used as a query via method reference, {@code Instant::from} . * * @param temporal * the temporal object to convert, not null * @return * the instant, not null * @throws DateTimeException - * if unable to convert to an { @code Instant} + * if unable to convert to an {@code Instant} */ def from(temporal: TemporalAccessor): Instant = try { @@ -272,10 +272,10 @@ object Instant { * event time-stamps in the application. * * For practicality, the instant is stored with some constraints. The measurable time-line is - * restricted to the number of seconds that can be held in a {@code long}. This is greater than the + * restricted to the number of seconds that can be held in a {@code long} . This is greater than the * current estimated age of the universe. The instant is stored to nanosecond resolution. * - * The range of an instant requires the storage of a number larger than a {@code long}. To achieve + * The range of an instant requires the storage of a number larger than a {@code long} . To achieve * this, the class stores a {@code long} representing epoch-seconds and an {@code int} representing * nanosecond-of-second, which will always be between 0 and 999,999,999. The epoch-seconds are * measured from the standard Java epoch of {@code 1970-01-01T00:00:00Z} where instants after the @@ -335,12 +335,12 @@ object Instant { * 1/1000th longer or shorter than a real SI second. * * One final problem is the definition of the agreed international civil time before the - * introduction of modern UTC in 1972. This includes the Java epoch of {@code 1970-01-01}. It is + * introduction of modern UTC in 1972. This includes the Java epoch of {@code 1970-01-01} . It is * intended that instants before 1972 be interpreted based on the solar day divided into 86400 * subdivisions. * - * The Java time-scale is used by all date-time classes. This includes {@code Instant}, {@code - * LocalDate}, {@code LocalTime}, {@code OffsetDateTime}, {@code ZonedDateTime} and {@code + * The Java time-scale is used by all date-time classes. This includes {@code Instant} , {@code + * LocalDate}, {@code LocalTime} , {@code OffsetDateTime} , {@code ZonedDateTime} and {@code * Duration}. * *

    Specification for implementors

    This class is immutable and thread-safe. @@ -372,7 +372,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * are:
    • {@code NANO_OF_SECOND}
    • {@code MICRO_OF_SECOND}
    • {@code MILLI_OF_SECOND} *
    • {@code INSTANT_SECONDS}
    All other {@code ChronoField} instances will return false. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the field is supported is determined by the field. * @@ -399,9 +399,9 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return appropriate range instances. All - * other {@code ChronoField} instances will throw a {@code DateTimeException}. + * other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the range can be obtained is determined by the field. * @@ -415,7 +415,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) override def range(field: TemporalField): ValueRange = super.range(field) /** - * Gets the value of the specified field from this instant as an {@code int}. + * Gets the value of the specified field from this instant as an {@code int} . * * This queries this instant for the value for the specified field. The returned value will always * be within the valid range of values for the field. If it is not possible to return the value, @@ -427,7 +427,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * DateTimeException}. All other {@code ChronoField} instances will throw a {@code * DateTimeException}. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -453,7 +453,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) } /** - * Gets the value of the specified field from this instant as a {@code long}. + * Gets the value of the specified field from this instant as a {@code long} . * * This queries this instant for the value for the specified field. If it is not possible to * return the value, because the field is not supported or for some other reason, an exception is @@ -461,9 +461,9 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return valid values based on this date-time. - * All other {@code ChronoField} instances will throw a {@code DateTimeException}. + * All other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -493,7 +493,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * Gets the number of seconds from the Java epoch of 1970-01-01T00:00:00Z. * * The epoch second count is a simple incrementing count of seconds where second 0 is - * 1970-01-01T00:00:00Z. The nanosecond part of the day is returned by {@code getNanosOfSecond}. + * 1970-01-01T00:00:00Z. The nanosecond part of the day is returned by {@code getNanosOfSecond} . * * @return * the seconds from the epoch of 1970-01-01T00:00:00Z @@ -504,7 +504,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * Gets the number of nanoseconds, later along the time-line, from the start of the second. * * The nanosecond-of-second value measures the total number of nanoseconds from the second - * returned by {@code getEpochSecond}. + * returned by {@code getEpochSecond} . * * @return * the nanoseconds within the second, always positive, never exceeds 999,999,999 @@ -514,7 +514,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) /** * Returns an adjusted copy of this instant. * - * This returns a new {@code Instant}, based on this one, with the date adjusted. The adjustment + * This returns a new {@code Instant} , based on this one, with the date adjusted. The adjustment * takes place using the specified adjuster strategy object. Read the documentation of the * adjuster to understand what adjustment will be made. * @@ -527,7 +527,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param adjuster * the adjuster to use, not null * @return - * an { @code Instant} based on { @code this} with the adjustment made, not null + * an {@code Instant} based on {@code this} with the adjustment made, not null * @throws DateTimeException * if the adjustment cannot be made * @throws ArithmeticException @@ -539,7 +539,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) /** * Returns a copy of this instant with the specified field set to a new value. * - * This returns a new {@code Instant}, based on this one, with the value for the specified field + * This returns a new {@code Instant} , based on this one, with the value for the specified field * changed. If it is not possible to set the value, because the field is not supported or for some * other reason, an exception is thrown. * @@ -555,9 +555,9 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * In all cases, if the new value is outside the valid range of values for the field then a {@code * DateTimeException} will be thrown. * - * All other {@code ChronoField} instances will throw a {@code DateTimeException}. + * All other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.adjustInto(Temporal, long)} passing {@code this} as the argument. * In this case, the field determines whether and how to adjust the instant. * @@ -568,7 +568,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param newValue * the new value of the field in the result * @return - * an { @code Instant} based on { @code this} with the specified field set, not null + * an {@code Instant} based on {@code this} with the specified field set, not null * @throws DateTimeException * if the field cannot be set * @throws ArithmeticException @@ -602,19 +602,19 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * * Truncating the instant returns a copy of the original with fields smaller than the specified * unit set to zero. The fields are calculated on the basis of using a UTC offset as seen in - * {@code toString}. For example, truncating with the {@link ChronoUnit#MINUTES MINUTES} unit will - * round down to the nearest minute, setting the seconds and nanoseconds to zero. + * {@code toString} . For example, truncating with the {@link ChronoUnit#MINUTES MINUTES} unit + * will round down to the nearest minute, setting the seconds and nanoseconds to zero. * * The unit must have a {@linkplain TemporalUnit#getDuration() duration} that divides into the * length of a standard day without remainder. This includes all supplied time units on {@link - * ChronoUnit} and {@link ChronoUnit#DAYS DAYS}. Other units throw an exception. + * ChronoUnit} and {@link ChronoUnit#DAYS DAYS} . Other units throw an exception. * * This instance is immutable and unaffected by this method call. * * @param unit * the unit to truncate to, not null * @return - * an { @code Instant} based on this instant with the time truncated, not null + * an {@code Instant} based on this instant with the time truncated, not null * @throws DateTimeException * if the unit is invalid for truncation */ @@ -636,18 +636,18 @@ final class Instant private (private val seconds: Long, private val nanos: Int) /** * {@inheritDoc} * @throws DateTimeException - * { @inheritDoc} + * {@inheritDoc} * @throws ArithmeticException - * { @inheritDoc} + * {@inheritDoc} */ override def plus(amount: TemporalAmount): Instant = amount.addTo(this).asInstanceOf[Instant] /** * {@inheritDoc} * @throws DateTimeException - * { @inheritDoc} + * {@inheritDoc} * @throws ArithmeticException - * { @inheritDoc} + * {@inheritDoc} */ def plus(amountToAdd: Long, unit: TemporalUnit): Instant = { unit match { @@ -686,7 +686,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param secondsToAdd * the seconds to add, positive or negative * @return - * an { @code Instant} based on this instant with the specified seconds added, not null + * an {@code Instant} based on this instant with the specified seconds added, not null * @throws DateTimeException * if the result exceeds the maximum or minimum instant * @throws ArithmeticException @@ -702,7 +702,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param millisToAdd * the milliseconds to add, positive or negative * @return - * an { @code Instant} based on this instant with the specified milliseconds added, not null + * an {@code Instant} based on this instant with the specified milliseconds added, not null * @throws DateTimeException * if the result exceeds the maximum or minimum instant * @throws ArithmeticException @@ -719,7 +719,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param nanosToAdd * the nanoseconds to add, positive or negative * @return - * an { @code Instant} based on this instant with the specified nanoseconds added, not null + * an {@code Instant} based on this instant with the specified nanoseconds added, not null * @throws DateTimeException * if the result exceeds the maximum or minimum instant * @throws ArithmeticException @@ -737,7 +737,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param nanosToAdd * the nanos to add, positive or negative * @return - * an { @code Instant} based on this instant with the specified seconds added, not null + * an {@code Instant} based on this instant with the specified seconds added, not null * @throws DateTimeException * if the result exceeds the maximum or minimum instant * @throws ArithmeticException @@ -757,9 +757,9 @@ final class Instant private (private val seconds: Long, private val nanos: Int) /** * {@inheritDoc} * @throws DateTimeException - * { @inheritDoc} + * {@inheritDoc} * @throws ArithmeticException - * { @inheritDoc} + * {@inheritDoc} */ override def minus(amount: TemporalAmount): Instant = amount.subtractFrom(this).asInstanceOf[Instant] @@ -767,9 +767,9 @@ final class Instant private (private val seconds: Long, private val nanos: Int) /** * {@inheritDoc} * @throws DateTimeException - * { @inheritDoc} + * {@inheritDoc} * @throws ArithmeticException - * { @inheritDoc} + * {@inheritDoc} */ override def minus(amountToSubtract: Long, unit: TemporalUnit): Instant = if (amountToSubtract == Long.MinValue) plus(Long.MaxValue, unit).plus(1, unit) @@ -783,7 +783,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param secondsToSubtract * the seconds to subtract, positive or negative * @return - * an { @code Instant} based on this instant with the specified seconds subtracted, not null + * an {@code Instant} based on this instant with the specified seconds subtracted, not null * @throws DateTimeException * if the result exceeds the maximum or minimum instant * @throws ArithmeticException @@ -803,8 +803,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param millisToSubtract * the milliseconds to subtract, positive or negative * @return - * an { @code Instant} based on this instant with the specified milliseconds subtracted, not - * null + * an {@code Instant} based on this instant with the specified milliseconds subtracted, not null * @throws DateTimeException * if the result exceeds the maximum or minimum instant * @throws ArithmeticException @@ -824,7 +823,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * @param nanosToSubtract * the nanoseconds to subtract, positive or negative * @return - * an { @code Instant} based on this instant with the specified nanoseconds subtracted, not null + * an {@code Instant} based on this instant with the specified nanoseconds subtracted, not null * @throws DateTimeException * if the result exceeds the maximum or minimum instant * @throws ArithmeticException @@ -903,28 +902,28 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * points are {@code this} and the specified instant. The result will be negative if the end is * before the start. The calculation returns a whole number, representing the number of complete * units between the two instants. The {@code Temporal} passed to this method is converted to a - * {@code Instant} using {@link #from(TemporalAccessor)}. For example, the period in days between - * two dates can be calculated using {@code startInstant.until(endInstant, SECONDS)}. + * {@code Instant} using {@link #from(TemporalAccessor)} . For example, the period in days between + * two dates can be calculated using {@code startInstant.until(endInstant, SECONDS)} . * - * This method operates in association with {@link TemporalUnit#between}. The result of this + * This method operates in association with {@link TemporalUnit#between} . The result of this * method is a {@code long} representing the amount of the specified unit. By contrast, the result * of {@code between} is an object that can be used directly in addition/subtraction:
     long
        * period = start.until(end, SECONDS); // this method dateTime.plus(SECONDS.between(start, end));
        * // use in plus/minus 
    * - * The calculation is implemented in this method for {@link ChronoUnit}. The units {@code NANOS}, - * {@code MICROS}, {@code MILLIS}, {@code SECONDS}, {@code MINUTES}, {@code HOURS}, {@code + * The calculation is implemented in this method for {@link ChronoUnit} . The units {@code NANOS} + * , {@code MICROS} , {@code MILLIS} , {@code SECONDS} , {@code MINUTES} , {@code HOURS} , {@code * HALF_DAYS} and {@code DAYS} are supported. Other {@code ChronoUnit} values will throw an * exception. * - * If the unit is not a {@code ChronoUnit}, then the result of this method is obtained by invoking - * {@code TemporalUnit.between(Temporal, Temporal)} passing {@code this} as the first argument and - * the input temporal as the second argument. + * If the unit is not a {@code ChronoUnit} , then the result of this method is obtained by + * invoking {@code TemporalUnit.between(Temporal, Temporal)} passing {@code this} as the first + * argument and the input temporal as the second argument. * * This instance is immutable and unaffected by this method call. * * @param endExclusive - * the end date, which is converted to an { @code Instant}, not null + * the end date, which is converted to an {@code Instant} , not null * @param unit * the unit to measure the period in, not null * @return @@ -981,7 +980,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) } /** - * Combines this instant with an offset to create an {@code OffsetDateTime}. + * Combines this instant with an offset to create an {@code OffsetDateTime} . * * This returns an {@code OffsetDateTime} formed from this instant at the specified offset from * UTC/Greenwich. An exception will be thrown if the instant is too large to fit into an offset @@ -1000,7 +999,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) def atOffset(offset: ZoneOffset): OffsetDateTime = OffsetDateTime.ofInstant(this, offset) /** - * Combines this instant with a time-zone to create a {@code ZonedDateTime}. + * Combines this instant with a time-zone to create a {@code ZonedDateTime} . * * This returns an {@code ZonedDateTime} formed from this instant at the specified time-zone. An * exception will be thrown if the instant is too large to fit into a zoned date-time. @@ -1054,7 +1053,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) * Compares this instant to the specified instant. * * The comparison is based on the time-line position of the instants. It is "consistent with - * equals", as defined by {@link Comparable}. + * equals", as defined by {@link Comparable} . * * @param otherInstant * the other instant to compare to, not null @@ -1127,7 +1126,7 @@ final class Instant private (private val seconds: Long, private val nanos: Int) /** * A string representation of this instant using ISO-8601 representation. * - * The format used is the same as {@link DateTimeFormatter#ISO_INSTANT}. + * The format used is the same as {@link DateTimeFormatter#ISO_INSTANT} . * * @return * an ISO-8601 representation of this instant, not null diff --git a/core/shared/src/main/scala/org/threeten/bp/LocalDate.scala b/core/shared/src/main/scala/org/threeten/bp/LocalDate.scala index c27f26473..06a0a2aa5 100644 --- a/core/shared/src/main/scala/org/threeten/bp/LocalDate.scala +++ b/core/shared/src/main/scala/org/threeten/bp/LocalDate.scala @@ -69,13 +69,13 @@ import org.threeten.bp.zone.ZoneRules object LocalDate { /** - * The minimum supported {@code LocalDate}, '-999999999-01-01'. This could be used by an + * The minimum supported {@code LocalDate} , '-999999999-01-01'. This could be used by an * application as a "far past" date. */ lazy val MIN: LocalDate = LocalDate.of(Year.MIN_VALUE, 1, 1) /** - * The maximum supported {@code LocalDate}, '+999999999-12-31'. This could be used by an + * The maximum supported {@code LocalDate} , '+999999999-12-31'. This could be used by an * application as a "far future" date. */ lazy val MAX: LocalDate = LocalDate.of(Year.MAX_VALUE, 12, 31) @@ -124,7 +124,7 @@ object LocalDate { * * This will query the specified clock to obtain the current date - today. Using this method * allows the use of an alternate clock for testing. The alternate clock may be introduced using - * {@link Clock dependency injection}. + * {@link Clock dependency injection} . * * @param clock * the clock to use, not null @@ -263,20 +263,20 @@ object LocalDate { * Obtains an instance of {@code LocalDate} from a temporal object. * * A {@code TemporalAccessor} represents some form of date and time information. This factory - * converts the arbitrary temporal object to an instance of {@code LocalDate}. + * converts the arbitrary temporal object to an instance of {@code LocalDate} . * * The conversion uses the {@link TemporalQueries#localDate()} query, which relies on extracting * the {@link ChronoField#EPOCH_DAY EPOCH_DAY} field. * * This method matches the signature of the functional interface {@link TemporalQuery} allowing it - * to be used as a query via method reference, {@code LocalDate::from}. + * to be used as a query via method reference, {@code LocalDate::from} . * * @param temporal * the temporal object to convert, not null * @return * the local date, not null * @throws DateTimeException - * if unable to convert to a { @code LocalDate} + * if unable to convert to a {@code LocalDate} */ def from(temporal: TemporalAccessor): LocalDate = { val date: LocalDate = temporal.query(TemporalQueries.localDate) @@ -288,7 +288,7 @@ object LocalDate { } /** - * Obtains an instance of {@code LocalDate} from a text string such as {@code 2007-12-03}. + * Obtains an instance of {@code LocalDate} from a text string such as {@code 2007-12-03} . * * The string must represent a valid date and is parsed using {@link * org.threeten.bp.format.DateTimeFormatter#ISO_LOCAL_DATE}. @@ -376,11 +376,11 @@ object LocalDate { } /** - * A date without a time-zone in the ISO-8601 calendar system, such as {@code 2007-12-03}. + * A date without a time-zone in the ISO-8601 calendar system, such as {@code 2007-12-03} . * * {@code LocalDate} is an immutable date-time object that represents a date, often viewed as * year-month-day. Other date fields, such as day-of-year, day-of-week and week-of-year, can also be - * accessed. For example, the value "2nd October 2007" can be stored in a {@code LocalDate}. + * accessed. For example, the value "2nd October 2007" can be stored in a {@code LocalDate} . * * This class does not store or represent a time or time-zone. Instead, it is a description of the * date, as used for birthdays. It cannot represent an instant on the time-line without additional @@ -431,7 +431,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon *
  • {@code MONTH_OF_YEAR}
  • {@code EPOCH_MONTH}
  • {@code YEAR_OF_ERA}
  • {@code YEAR} *
  • {@code ERA} All other {@code ChronoField} instances will return false. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the field is supported is determined by the field. * @@ -451,9 +451,9 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return appropriate range instances. All - * other {@code ChronoField} instances will throw a {@code DateTimeException}. + * other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the range can be obtained is determined by the field. * @@ -484,7 +484,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon field.rangeRefinedBy(this) /** - * Gets the value of the specified field from this date as an {@code int}. + * Gets the value of the specified field from this date as an {@code int} . * * This queries this date for the value for the specified field. The returned value will always be * within the valid range of values for the field. If it is not possible to return the value, @@ -493,10 +493,10 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return valid values based on this date, * except {@code EPOCH_DAY} and {@code EPOCH_MONTH} which are too large to fit in an {@code int} - * and throw a {@code DateTimeException}. All other {@code ChronoField} instances will throw a - * {@code DateTimeException}. + * and throw a {@code DateTimeException} . All other {@code ChronoField} instances will throw a + * {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -514,16 +514,16 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon else super.get(field) /** - * Gets the value of the specified field from this date as a {@code long}. + * Gets the value of the specified field from this date as a {@code long} . * * This queries this date for the value for the specified field. If it is not possible to return * the value, because the field is not supported or for some other reason, an exception is thrown. * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return valid values based on this date. All - * other {@code ChronoField} instances will throw a {@code DateTimeException}. + * other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -594,7 +594,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * IsoChronology} using the {@code ==} operator. * * @return - * the { @code IsoChronology} era constant applicable at this date, not null + * the {@code IsoChronology} era constant applicable at this date, not null */ override def getEra: Era = super.getEra @@ -603,8 +603,8 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * * This method returns the primitive {@code int} value for the year. * - * The year returned by this method is proleptic as per {@code get(YEAR)}. To obtain the - * year-of-era, use {@code get(YEAR_OF_ERA}. + * The year returned by this method is proleptic as per {@code get(YEAR)} . To obtain the + * year-of-era, use {@code get(YEAR_OF_ERA} . * * @return * the year, from MIN_YEAR to MAX_YEAR @@ -615,7 +615,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * Gets the month-of-year field from 1 to 12. * * This method returns the month as an {@code int} from 1 to 12. Application code is frequently - * clearer if the enum {@link Month} is used by calling {@link #getMonth()}. + * clearer if the enum {@link Month} is used by calling {@link #getMonth()} . * * @return * the month-of-year, from 1 to 12 @@ -629,7 +629,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * * This method returns the enum {@link Month} for the month. This avoids confusion as to what * {@code int} values mean. If you need access to the primitive {@code int} value then the enum - * provides the {@link Month#getValue() int value}. + * provides the {@link Month#getValue() int value} . * * @return * the month-of-year, not null @@ -659,13 +659,13 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon def getDayOfYear: Int = getMonth.firstDayOfYear(isLeapYear) + day - 1 /** - * Gets the day-of-week field, which is an enum {@code DayOfWeek}. + * Gets the day-of-week field, which is an enum {@code DayOfWeek} . * * This method returns the enum {@link DayOfWeek} for the day-of-week. This avoids confusion as to * what {@code int} values mean. If you need access to the primitive {@code int} value then the - * enum provides the {@link DayOfWeek#getValue() int value}. + * enum provides the {@link DayOfWeek#getValue() int value} . * - * Additional information can be obtained from the {@code DayOfWeek}. This includes textual names + * Additional information can be obtained from the {@code DayOfWeek} . This includes textual names * of the values. * * @return @@ -722,15 +722,15 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon /** * Returns an adjusted copy of this date. * - * This returns a new {@code LocalDate}, based on this one, with the date adjusted. The adjustment - * takes place using the specified adjuster strategy object. Read the documentation of the - * adjuster to understand what adjustment will be made. + * This returns a new {@code LocalDate} , based on this one, with the date adjusted. The + * adjustment takes place using the specified adjuster strategy object. Read the documentation of + * the adjuster to understand what adjustment will be made. * * A simple adjuster might simply set the one of the fields, such as the year field. A more * complex adjuster might set the date to the last day of the month. A selection of common - * adjustments is provided in {@link TemporalAdjusters}. These include finding the "last day of + * adjustments is provided in {@link TemporalAdjusters} . These include finding the "last day of * the month" and "next Wednesday". Key date-time classes also implement the {@code - * TemporalAdjuster} interface, such as {@link Month} and {@link MonthDay}. The adjuster is + * TemporalAdjuster} interface, such as {@link Month} and {@link MonthDay} . The adjuster is * responsible for handling special cases, such as the varying lengths of month and leap years. * * For example this code returns a date on the last day of July:
     import static
    @@ -747,7 +747,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon
        * @param adjuster
        *   the adjuster to use, not null
        * @return
    -   *   a { @code LocalDate} based on { @code this} with the adjustment made, not null
    +   *   a {@code LocalDate} based on {@code this} with the adjustment made, not null
        * @throws DateTimeException
        *   if the adjustment cannot be made
        * @throws ArithmeticException
    @@ -760,8 +760,8 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon
       /**
        * Returns a copy of this date with the specified field set to a new value.
        *
    -   * This returns a new {@code LocalDate}, based on this one, with the value for the specified field
    -   * changed. This can be used to change any supported field, such as the year, month or
    +   * This returns a new {@code LocalDate} , based on this one, with the value for the specified
    +   * field changed. This can be used to change any supported field, such as the year, month or
        * day-of-month. If it is not possible to set the value, because the field is not supported or for
        * some other reason, an exception is thrown.
        *
    @@ -787,7 +787,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon
        * {@code LocalDate} with the specified day-of-year. The year will be unchanged. If the
        * day-of-year is invalid for the year, then a {@code DateTimeException} is thrown. 
  • {@code * EPOCH_DAY} - Returns a {@code LocalDate} with the specified epoch-day. This completely replaces - * the date and is equivalent to {@link #ofEpochDay(long)}.
  • {@code ALIGNED_WEEK_OF_MONTH} - + * the date and is equivalent to {@link #ofEpochDay(long)} .
  • {@code ALIGNED_WEEK_OF_MONTH} - * Returns a {@code LocalDate} with the specified aligned-week-of-month. Aligned weeks are counted * such that the first week of a given month starts on the first day of that month. This * adjustment moves the date in whole week chunks to match the specified week. The result will @@ -817,9 +817,9 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * In all cases, if the new value is outside the valid range of values for the field then a {@code * DateTimeException} will be thrown. * - * All other {@code ChronoField} instances will throw a {@code DateTimeException}. + * All other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.adjustInto(Temporal, long)} passing {@code this} as the argument. * In this case, the field determines whether and how to adjust the instant. * @@ -830,7 +830,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param newValue * the new value of the field in the result * @return - * a { @code LocalDate} based on { @code this} with the specified field set, not null + * a {@code LocalDate} based on {@code this} with the specified field set, not null * @throws DateTimeException * if the field cannot be set * @throws ArithmeticException @@ -870,7 +870,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param year * the year to set in the result, from MIN_YEAR to MAX_YEAR * @return - * a { @code LocalDate} based on this date with the requested year, not null + * a {@code LocalDate} based on this date with the requested year, not null * @throws DateTimeException * if the year value is invalid */ @@ -891,7 +891,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param month * the month-of-year to set in the result, from 1 (January) to 12 (December) * @return - * a { @code LocalDate} based on this date with the requested month, not null + * a {@code LocalDate} based on this date with the requested month, not null * @throws DateTimeException * if the month-of-year value is invalid */ @@ -912,7 +912,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param dayOfMonth * the day-of-month to set in the result, from 1 to 28-31 * @return - * a { @code LocalDate} based on this date with the requested day, not null + * a {@code LocalDate} based on this date with the requested day, not null * @throws DateTimeException * if the day-of-month value is invalid * @throws DateTimeException @@ -931,7 +931,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param dayOfYear * the day-of-year to set in the result, from 1 to 365-366 * @return - * a { @code LocalDate} based on this date with the requested day, not null + * a {@code LocalDate} based on this date with the requested day, not null * @throws DateTimeException * if the day-of-year value is invalid * @throws DateTimeException @@ -947,14 +947,14 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * This method returns a new date based on this date with the specified period added. The amount * is typically {@link Period} but may be any other type implementing the {@link TemporalAmount} * interface. The calculation is delegated to the specified adjuster, which typically calls back - * to {@link #plus(long, TemporalUnit)}. + * to {@link #plus(long, TemporalUnit)} . * * This instance is immutable and unaffected by this method call. * * @param amount * the amount to add, not null * @return - * a { @code LocalDate} based on this date with the addition made, not null + * a {@code LocalDate} based on this date with the addition made, not null * @throws DateTimeException * if the addition cannot be made * @throws ArithmeticException @@ -977,7 +977,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param unit * the unit of the period to add, not null * @return - * a { @code LocalDate} based on this date with the specified period added, not null + * a {@code LocalDate} based on this date with the specified period added, not null * @throws DateTimeException * if the unit cannot be added to this type */ @@ -1015,7 +1015,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param yearsToAdd * the years to add, may be negative * @return - * a { @code LocalDate} based on this date with the years added, not null + * a {@code LocalDate} based on this date with the years added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1042,7 +1042,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param monthsToAdd * the months to add, may be negative * @return - * a { @code LocalDate} based on this date with the months added, not null + * a {@code LocalDate} based on this date with the months added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1071,7 +1071,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param weeksToAdd * the weeks to add, may be negative * @return - * a { @code LocalDate} based on this date with the weeks added, not null + * a {@code LocalDate} based on this date with the weeks added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1091,7 +1091,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param daysToAdd * the days to add, may be negative * @return - * a { @code LocalDate} based on this date with the days added, not null + * a {@code LocalDate} based on this date with the days added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1109,14 +1109,14 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * This method returns a new date based on this date with the specified period subtracted. The * amount is typically {@link Period} but may be any other type implementing the {@link * TemporalAmount} interface. The calculation is delegated to the specified adjuster, which - * typically calls back to {@link #minus(long, TemporalUnit)}. + * typically calls back to {@link #minus(long, TemporalUnit)} . * * This instance is immutable and unaffected by this method call. * * @param amount * the amount to subtract, not null * @return - * a { @code LocalDate} based on this date with the subtraction made, not null + * a {@code LocalDate} based on this date with the subtraction made, not null * @throws DateTimeException * if the subtraction cannot be made * @throws ArithmeticException @@ -1140,7 +1140,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param unit * the unit of the period to subtract, not null * @return - * a { @code LocalDate} based on this date with the specified period subtracted, not null + * a {@code LocalDate} based on this date with the specified period subtracted, not null * @throws DateTimeException * if the unit cannot be added to this type */ @@ -1164,7 +1164,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param yearsToSubtract * the years to subtract, may be negative * @return - * a { @code LocalDate} based on this date with the years subtracted, not null + * a {@code LocalDate} based on this date with the years subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1187,7 +1187,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param monthsToSubtract * the months to subtract, may be negative * @return - * a { @code LocalDate} based on this date with the months subtracted, not null + * a {@code LocalDate} based on this date with the months subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1209,7 +1209,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param weeksToSubtract * the weeks to subtract, may be negative * @return - * a { @code LocalDate} based on this date with the weeks subtracted, not null + * a {@code LocalDate} based on this date with the weeks subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1231,7 +1231,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * @param daysToSubtract * the days to subtract, may be negative * @return - * a { @code LocalDate} based on this date with the days subtracted, not null + * a {@code LocalDate} based on this date with the days subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1297,7 +1297,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * * This calculates the period between two dates in terms of a single unit. The start and end * points are {@code this} and the specified date. The result will be negative if the end is - * before the start. The {@code Temporal} passed to this method must be a {@code LocalDate}. For + * before the start. The {@code Temporal} passed to this method must be a {@code LocalDate} . For * example, the period in days between two dates can be calculated using {@code * startDate.until(endDate, DAYS)}. * @@ -1305,25 +1305,25 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * two dates. For example, the period in months between 2012-06-15 and 2012-08-14 will only be one * month as it is one day short of two months. * - * This method operates in association with {@link TemporalUnit#between}. The result of this + * This method operates in association with {@link TemporalUnit#between} . The result of this * method is a {@code long} representing the amount of the specified unit. By contrast, the result * of {@code between} is an object that can be used directly in addition/subtraction:
     long
        * period = start.until(end, MONTHS); // this method dateTime.plus(MONTHS.between(start, end)); //
        * use in plus/minus 
    * - * The calculation is implemented in this method for {@link ChronoUnit}. The units {@code DAYS}, - * {@code WEEKS}, {@code MONTHS}, {@code YEARS}, {@code DECADES}, {@code CENTURIES}, {@code + * The calculation is implemented in this method for {@link ChronoUnit} . The units {@code DAYS} , + * {@code WEEKS} , {@code MONTHS} , {@code YEARS} , {@code DECADES} , {@code CENTURIES} , {@code * MILLENNIA} and {@code ERAS} are supported. Other {@code ChronoUnit} values will throw an * exception. * - * If the unit is not a {@code ChronoUnit}, then the result of this method is obtained by invoking - * {@code TemporalUnit.between(Temporal, Temporal)} passing {@code this} as the first argument and - * the input temporal as the second argument. + * If the unit is not a {@code ChronoUnit} , then the result of this method is obtained by + * invoking {@code TemporalUnit.between(Temporal, Temporal)} passing {@code this} as the first + * argument and the input temporal as the second argument. * * This instance is immutable and unaffected by this method call. * * @param endExclusive - * the end date, which is converted to a { @code LocalDate}, not null + * the end date, which is converted to a {@code LocalDate} , not null * @param unit * the unit to measure the period in, not null * @return @@ -1362,7 +1362,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon } /** - * Calculates the period between this date and another date as a {@code Period}. + * Calculates the period between this date and another date as a {@code Period} . * * This calculates the period between two dates in terms of years, months and days. The start and * end points are {@code this} and the specified date. The result will be negative if the end is @@ -1382,7 +1382,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * sign will be the same in each of year, month and day. * * There are two equivalent ways of using this method. The first is to invoke this method. The - * second is to use {@link Period#between(LocalDate, LocalDate)}:
     // these two lines are
    +   * second is to use {@link Period#between(LocalDate, LocalDate)} : 
     // these two lines are
        * equivalent period = start.until(end); period = Period.between(start, end); 
    The choice * should be made based on which makes the code more readable. * @@ -1409,7 +1409,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon } /** - * Combines this date with a time to create a {@code LocalDateTime}. + * Combines this date with a time to create a {@code LocalDateTime} . * * This returns a {@code LocalDateTime} formed from this date at the specified time. All possible * combinations of date and time are valid. @@ -1422,7 +1422,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon override def atTime(time: LocalTime): LocalDateTime = LocalDateTime.of(this, time) /** - * Combines this date with a time to create a {@code LocalDateTime}. + * Combines this date with a time to create a {@code LocalDateTime} . * * This returns a {@code LocalDateTime} formed from this date at the specified hour and minute. * The seconds and nanosecond fields will be set to zero. The individual time fields must be @@ -1440,7 +1440,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon def atTime(hour: Int, minute: Int): LocalDateTime = atTime(LocalTime.of(hour, minute)) /** - * Combines this date with a time to create a {@code LocalDateTime}. + * Combines this date with a time to create a {@code LocalDateTime} . * * This returns a {@code LocalDateTime} formed from this date at the specified hour, minute and * second. The nanosecond field will be set to zero. The individual time fields must be within @@ -1461,7 +1461,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon atTime(LocalTime.of(hour, minute, second)) /** - * Combines this date with a time to create a {@code LocalDateTime}. + * Combines this date with a time to create a {@code LocalDateTime} . * * This returns a {@code LocalDateTime} formed from this date at the specified hour, minute, * second and nanosecond. The individual time fields must be within their valid range. All @@ -1484,7 +1484,7 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon atTime(LocalTime.of(hour, minute, second, nanoOfSecond)) /** - * Combines this date with an offset time to create an {@code OffsetDateTime}. + * Combines this date with an offset time to create an {@code OffsetDateTime} . * * This returns an {@code OffsetDateTime} formed from this date at the specified time. All * possible combinations of date and time are valid. @@ -1523,10 +1523,10 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * of midnight on the date. In the case of a gap, the zoned date-time will represent the instant * just after the gap. * - * If the zone ID is a {@link ZoneOffset}, then the result always has a time of midnight. + * If the zone ID is a {@link ZoneOffset} , then the result always has a time of midnight. * * To convert to a specific time in a given time-zone call {@link #atTime(LocalTime)} followed by - * {@link LocalDateTime#atZone(ZoneId)}. + * {@link LocalDateTime#atZone(ZoneId)} . * * @param zone * the zone ID to use, not null @@ -1568,11 +1568,11 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * Compares this date to another date. * * The comparison is primarily based on the date, from earliest to latest. It is "consistent with - * equals", as defined by {@link Comparable}. + * equals", as defined by {@link Comparable} . * - * If all the dates being compared are instances of {@code LocalDate}, then the comparison will be - * entirely based on the date. If some dates being compared are in different chronologies, then - * the chronology is also considered, see {@link ChronoLocalDate#compareTo}. + * If all the dates being compared are instances of {@code LocalDate} , then the comparison will + * be entirely based on the date. If some dates being compared are in different chronologies, then + * the chronology is also considered, see {@link ChronoLocalDate#compareTo} . * * @param other * the other date to compare to, not null @@ -1598,12 +1598,11 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * * This checks to see if this date represents a point on the local time-line after the other date. *
     LocalDate a = LocalDate.of(2012, 6, 30); LocalDate b = LocalDate.of(2012, 7, 1);
    -   * a.isAfter(b) == false
    -   * a.isAfter(a) == false b.isAfter(a) == true 
    + * a.isAfter(b) == false a.isAfter(a) == false b.isAfter(a) == true
    * * This method only considers the position of the two dates on the local time-line. It does not * take into account the chronology, or calendar system. This is different from the comparison in - * {@link #compareTo(ChronoLocalDate)}, but is the same approach as {@link #DATE_COMPARATOR}. + * {@link #compareTo(ChronoLocalDate)} , but is the same approach as {@link #DATE_COMPARATOR} . * * @param other * the other date to compare to, not null @@ -1619,12 +1618,11 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * * This checks to see if this date represents a point on the local time-line before the other * date.
     LocalDate a = LocalDate.of(2012, 6, 30); LocalDate b = LocalDate.of(2012, 7, 1);
    -   * a.isBefore(b) == true
    -   * a.isBefore(a) == false b.isBefore(a) == false 
    + * a.isBefore(b) == true a.isBefore(a) == false b.isBefore(a) == false
  • * * This method only considers the position of the two dates on the local time-line. It does not * take into account the chronology, or calendar system. This is different from the comparison in - * {@link #compareTo(ChronoLocalDate)}, but is the same approach as {@link #DATE_COMPARATOR}. + * {@link #compareTo(ChronoLocalDate)} , but is the same approach as {@link #DATE_COMPARATOR} . * * @param other * the other date to compare to, not null @@ -1640,12 +1638,11 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon * * This checks to see if this date represents the same point on the local time-line as the other * date.
     LocalDate a = LocalDate.of(2012, 6, 30); LocalDate b = LocalDate.of(2012, 7, 1);
    -   * a.isEqual(b) == false
    -   * a.isEqual(a) == true b.isEqual(a) == false 
    + * a.isEqual(b) == false a.isEqual(a) == true b.isEqual(a) == false
  • * * This method only considers the position of the two dates on the local time-line. It does not * take into account the chronology, or calendar system. This is different from the comparison in - * {@link #compareTo(ChronoLocalDate)} but is the same approach as {@link #DATE_COMPARATOR}. + * {@link #compareTo(ChronoLocalDate)} but is the same approach as {@link #DATE_COMPARATOR} . * * @param other * the other date to compare to, not null @@ -1690,9 +1687,9 @@ final class LocalDate private (private val year: Int, monthOfYear: Int, dayOfMon } /** - * Outputs this date as a {@code String}, such as {@code 2007-12-03}. + * Outputs this date as a {@code String} , such as {@code 2007-12-03} . * - * The output will be in the ISO-8601 format {@code yyyy-MM-dd}. + * The output will be in the ISO-8601 format {@code yyyy-MM-dd} . * * @return * a string representation of this date, not null diff --git a/core/shared/src/main/scala/org/threeten/bp/LocalDateTime.scala b/core/shared/src/main/scala/org/threeten/bp/LocalDateTime.scala index 8dfff04e3..b8d932052 100644 --- a/core/shared/src/main/scala/org/threeten/bp/LocalDateTime.scala +++ b/core/shared/src/main/scala/org/threeten/bp/LocalDateTime.scala @@ -63,16 +63,16 @@ import org.threeten.bp.zone.ZoneRules object LocalDateTime { /** - * The minimum supported {@code LocalDateTime}, '-999999999-01-01T00:00:00'. This is the local + * The minimum supported {@code LocalDateTime} , '-999999999-01-01T00:00:00'. This is the local * date-time of midnight at the start of the minimum date. This combines {@link LocalDate#MIN} and - * {@link LocalTime#MIN}. This could be used by an application as a "far past" date-time. + * {@link LocalTime#MIN} . This could be used by an application as a "far past" date-time. */ lazy val MIN: LocalDateTime = LocalDateTime.of(LocalDate.MIN, LocalTime.MIN) /** - * The maximum supported {@code LocalDateTime}, '+999999999-12-31T23:59:59.999999999'. This is the - * local date-time just before midnight at the end of the maximum date. This combines {@link - * LocalDate#MAX} and {@link LocalTime#MAX}. This could be used by an application as a "far + * The maximum supported {@code LocalDateTime} , '+999999999-12-31T23:59:59.999999999'. This is + * the local date-time just before midnight at the end of the maximum date. This combines {@link + * LocalDate#MAX} and {@link LocalTime#MAX} . This could be used by an application as a "far * future" date-time. */ lazy val MAX: LocalDateTime = LocalDateTime.of(LocalDate.MAX, LocalTime.MAX) @@ -420,19 +420,19 @@ object LocalDateTime { * Obtains an instance of {@code LocalDateTime} from a temporal object. * * A {@code TemporalAccessor} represents some form of date and time information. This factory - * converts the arbitrary temporal object to an instance of {@code LocalDateTime}. + * converts the arbitrary temporal object to an instance of {@code LocalDateTime} . * - * The conversion extracts and combines {@code LocalDate} and {@code LocalTime}. + * The conversion extracts and combines {@code LocalDate} and {@code LocalTime} . * * This method matches the signature of the functional interface {@link TemporalQuery} allowing it - * to be used as a query via method reference, {@code LocalDateTime::from}. + * to be used as a query via method reference, {@code LocalDateTime::from} . * * @param temporal * the temporal object to convert, not null * @return * the local date-time, not null * @throws DateTimeException - * if unable to convert to a { @code LocalDateTime} + * if unable to convert to a {@code LocalDateTime} */ def from(temporal: TemporalAccessor): LocalDateTime = temporal match { @@ -563,7 +563,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time *
  • {@code YEAR}
  • {@code ERA} All other {@code ChronoField} instances will return * false. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the field is supported is determined by the field. * @@ -594,9 +594,9 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return appropriate range instances. All - * other {@code ChronoField} instances will throw a {@code DateTimeException}. + * other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the range can be obtained is determined by the field. * @@ -617,7 +617,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time } /** - * Gets the value of the specified field from this date-time as an {@code int}. + * Gets the value of the specified field from this date-time as an {@code int} . * * This queries this date-time for the value for the specified field. The returned value will * always be within the valid range of values for the field. If it is not possible to return the @@ -625,11 +625,11 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return valid values based on this date-time, - * except {@code NANO_OF_DAY}, {@code MICRO_OF_DAY}, {@code EPOCH_DAY} and {@code EPOCH_MONTH} - * which are too large to fit in an {@code int} and throw a {@code DateTimeException}. All other - * {@code ChronoField} instances will throw a {@code DateTimeException}. + * except {@code NANO_OF_DAY} , {@code MICRO_OF_DAY} , {@code EPOCH_DAY} and {@code EPOCH_MONTH} + * which are too large to fit in an {@code int} and throw a {@code DateTimeException} . All other + * {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -652,7 +652,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time } /** - * Gets the value of the specified field from this date-time as a {@code long}. + * Gets the value of the specified field from this date-time as a {@code long} . * * This queries this date-time for the value for the specified field. If it is not possible to * return the value, because the field is not supported or for some other reason, an exception is @@ -660,9 +660,9 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return valid values based on this date-time. - * All other {@code ChronoField} instances will throw a {@code DateTimeException}. + * All other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -689,8 +689,8 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * This method returns the primitive {@code int} value for the year. * - * The year returned by this method is proleptic as per {@code get(YEAR)}. To obtain the - * year-of-era, use {@code get(YEAR_OF_ERA}. + * The year returned by this method is proleptic as per {@code get(YEAR)} . To obtain the + * year-of-era, use {@code get(YEAR_OF_ERA} . * * @return * the year, from MIN_YEAR to MAX_YEAR @@ -701,7 +701,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * Gets the month-of-year field from 1 to 12. * * This method returns the month as an {@code int} from 1 to 12. Application code is frequently - * clearer if the enum {@link Month} is used by calling {@link #getMonth()}. + * clearer if the enum {@link Month} is used by calling {@link #getMonth()} . * * @return * the month-of-year, from 1 to 12 @@ -715,7 +715,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * This method returns the enum {@link Month} for the month. This avoids confusion as to what * {@code int} values mean. If you need access to the primitive {@code int} value then the enum - * provides the {@link Month#getValue() int value}. + * provides the {@link Month#getValue() int value} . * * @return * the month-of-year, not null @@ -745,13 +745,13 @@ final class LocalDateTime private (private val date: LocalDate, private val time def getDayOfYear: Int = date.getDayOfYear /** - * Gets the day-of-week field, which is an enum {@code DayOfWeek}. + * Gets the day-of-week field, which is an enum {@code DayOfWeek} . * * This method returns the enum {@link DayOfWeek} for the day-of-week. This avoids confusion as to * what {@code int} values mean. If you need access to the primitive {@code int} value then the - * enum provides the {@link DayOfWeek#getValue() int value}. + * enum provides the {@link DayOfWeek#getValue() int value} . * - * Additional information can be obtained from the {@code DayOfWeek}. This includes textual names + * Additional information can be obtained from the {@code DayOfWeek} . This includes textual names * of the values. * * @return @@ -794,15 +794,15 @@ final class LocalDateTime private (private val date: LocalDate, private val time /** * Returns an adjusted copy of this date-time. * - * This returns a new {@code LocalDateTime}, based on this one, with the date-time adjusted. The + * This returns a new {@code LocalDateTime} , based on this one, with the date-time adjusted. The * adjustment takes place using the specified adjuster strategy object. Read the documentation of * the adjuster to understand what adjustment will be made. * * A simple adjuster might simply set the one of the fields, such as the year field. A more * complex adjuster might set the date to the last day of the month. A selection of common - * adjustments is provided in {@link TemporalAdjusters}. These include finding the "last day of + * adjustments is provided in {@link TemporalAdjusters} . These include finding the "last day of * the month" and "next Wednesday". Key date-time classes also implement the {@code - * TemporalAdjuster} interface, such as {@link Month} and {@link MonthDay MonthDay}. The adjuster + * TemporalAdjuster} interface, such as {@link Month} and {@link MonthDay MonthDay} . The adjuster * is responsible for handling special cases, such as the varying lengths of month and leap years. * * For example this code returns a date on the last day of July:
     import static
    @@ -810,7 +810,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time
        *
        * result = localDateTime.with(JULY).with(lastDayOfMonth()); 
    * - * The classes {@link LocalDate} and {@link LocalTime} implement {@code TemporalAdjuster}, thus + * The classes {@link LocalDate} and {@link LocalTime} implement {@code TemporalAdjuster} , thus * this method can be used to change the date, time or offset:
     result =
        * localDateTime.with(date); result = localDateTime.with(time); 
    * @@ -823,7 +823,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param adjuster * the adjuster to use, not null * @return - * a { @code LocalDateTime} based on { @code this} with the adjustment made, not null + * a {@code LocalDateTime} based on {@code this} with the adjustment made, not null * @throws DateTimeException * if the adjustment cannot be made * @throws ArithmeticException @@ -841,7 +841,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time /** * Returns a copy of this date-time with the specified field set to a new value. * - * This returns a new {@code LocalDateTime}, based on this one, with the value for the specified + * This returns a new {@code LocalDateTime} , based on this one, with the value for the specified * field changed. This can be used to change any supported field, such as the year, month or * day-of-month. If it is not possible to set the value, because the field is not supported or for * some other reason, an exception is thrown. @@ -854,9 +854,9 @@ final class LocalDateTime private (private val date: LocalDate, private val time * If the field is a {@link ChronoField} then the adjustment is implemented here. The {@link * #isSupported(TemporalField) supported fields} will behave as per the matching method on {@link * LocalDate#with(TemporalField, long) LocalDate} or {@link LocalTime#with(TemporalField, long) - * LocalTime}. All other {@code ChronoField} instances will throw a {@code DateTimeException}. + * LocalTime}. All other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.adjustInto(Temporal, long)} passing {@code this} as the argument. * In this case, the field determines whether and how to adjust the instant. * @@ -867,7 +867,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param newValue * the new value of the field in the result * @return - * a { @code LocalDateTime} based on { @code this} with the specified field set, not null + * a {@code LocalDateTime} based on {@code this} with the specified field set, not null * @throws DateTimeException * if the field cannot be set * @throws ArithmeticException @@ -891,7 +891,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param year * the year to set in the result, from MIN_YEAR to MAX_YEAR * @return - * a { @code LocalDateTime} based on this date-time with the requested year, not null + * a {@code LocalDateTime} based on this date-time with the requested year, not null * @throws DateTimeException * if the year value is invalid */ @@ -907,7 +907,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param month * the month-of-year to set in the result, from 1 (January) to 12 (December) * @return - * a { @code LocalDateTime} based on this date-time with the requested month, not null + * a {@code LocalDateTime} based on this date-time with the requested month, not null * @throws DateTimeException * if the month-of-year value is invalid */ @@ -923,7 +923,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param dayOfMonth * the day-of-month to set in the result, from 1 to 28-31 * @return - * a { @code LocalDateTime} based on this date-time with the requested day, not null + * a {@code LocalDateTime} based on this date-time with the requested day, not null * @throws DateTimeException * if the day-of-month value is invalid * @throws DateTimeException @@ -940,7 +940,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param dayOfYear * the day-of-year to set in the result, from 1 to 365-366 * @return - * a { @code LocalDateTime} based on this date with the requested day, not null + * a {@code LocalDateTime} based on this date with the requested day, not null * @throws DateTimeException * if the day-of-year value is invalid * @throws DateTimeException @@ -956,7 +956,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param hour * the hour-of-day to set in the result, from 0 to 23 * @return - * a { @code LocalDateTime} based on this date-time with the requested hour, not null + * a {@code LocalDateTime} based on this date-time with the requested hour, not null * @throws DateTimeException * if the hour value is invalid */ @@ -971,7 +971,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param minute * the minute-of-hour to set in the result, from 0 to 59 * @return - * a { @code LocalDateTime} based on this date-time with the requested minute, not null + * a {@code LocalDateTime} based on this date-time with the requested minute, not null * @throws DateTimeException * if the minute value is invalid */ @@ -988,7 +988,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param second * the second-of-minute to set in the result, from 0 to 59 * @return - * a { @code LocalDateTime} based on this date-time with the requested second, not null + * a {@code LocalDateTime} based on this date-time with the requested second, not null * @throws DateTimeException * if the second value is invalid */ @@ -1005,7 +1005,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param nanoOfSecond * the nano-of-second to set in the result, from 0 to 999,999,999 * @return - * a { @code LocalDateTime} based on this date-time with the requested nanosecond, not null + * a {@code LocalDateTime} based on this date-time with the requested nanosecond, not null * @throws DateTimeException * if the nano value is invalid */ @@ -1023,14 +1023,14 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * The unit must have a {@linkplain TemporalUnit#getDuration() duration} that divides into the * length of a standard day without remainder. This includes all supplied time units on {@link - * ChronoUnit} and {@link ChronoUnit#DAYS DAYS}. Other units throw an exception. + * ChronoUnit} and {@link ChronoUnit#DAYS DAYS} . Other units throw an exception. * * This instance is immutable and unaffected by this method call. * * @param unit * the unit to truncate to, not null * @return - * a { @code LocalDateTime} based on this date-time with the time truncated, not null + * a {@code LocalDateTime} based on this date-time with the time truncated, not null * @throws DateTimeException * if unable to truncate */ @@ -1042,14 +1042,14 @@ final class LocalDateTime private (private val date: LocalDate, private val time * This method returns a new date-time based on this time with the specified period added. The * amount is typically {@link Period} but may be any other type implementing the {@link * TemporalAmount} interface. The calculation is delegated to the specified adjuster, which - * typically calls back to {@link #plus(long, TemporalUnit)}. + * typically calls back to {@link #plus(long, TemporalUnit)} . * * This instance is immutable and unaffected by this method call. * * @param amount * the amount to add, not null * @return - * a { @code LocalDateTime} based on this date-time with the addition made, not null + * a {@code LocalDateTime} based on this date-time with the addition made, not null * @throws DateTimeException * if the addition cannot be made * @throws ArithmeticException @@ -1073,7 +1073,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param unit * the unit of the period to add, not null * @return - * a { @code LocalDateTime} based on this date-time with the specified period added, not null + * a {@code LocalDateTime} based on this date-time with the specified period added, not null * @throws DateTimeException * if the unit cannot be added to this type */ @@ -1114,7 +1114,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param years * the years to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the years added, not null + * a {@code LocalDateTime} based on this date-time with the years added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1138,7 +1138,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param months * the months to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the months added, not null + * a {@code LocalDateTime} based on this date-time with the months added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1161,7 +1161,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param weeks * the weeks to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the weeks added, not null + * a {@code LocalDateTime} based on this date-time with the weeks added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1184,7 +1184,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param days * the days to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the days added, not null + * a {@code LocalDateTime} based on this date-time with the days added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1201,7 +1201,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param hours * the hours to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the hours added, not null + * a {@code LocalDateTime} based on this date-time with the hours added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1215,7 +1215,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param minutes * the minutes to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the minutes added, not null + * a {@code LocalDateTime} based on this date-time with the minutes added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1229,7 +1229,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param seconds * the seconds to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the seconds added, not null + * a {@code LocalDateTime} based on this date-time with the seconds added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1243,7 +1243,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param nanos * the nanos to add, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the nanoseconds added, not null + * a {@code LocalDateTime} based on this date-time with the nanoseconds added, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1255,14 +1255,14 @@ final class LocalDateTime private (private val date: LocalDate, private val time * This method returns a new date-time based on this time with the specified period subtracted. * The amount is typically {@link Period} but may be any other type implementing the {@link * TemporalAmount} interface. The calculation is delegated to the specified adjuster, which - * typically calls back to {@link #minus(long, TemporalUnit)}. + * typically calls back to {@link #minus(long, TemporalUnit)} . * * This instance is immutable and unaffected by this method call. * * @param amount * the amount to subtract, not null * @return - * a { @code LocalDateTime} based on this date-time with the subtraction made, not null + * a {@code LocalDateTime} based on this date-time with the subtraction made, not null * @throws DateTimeException * if the subtraction cannot be made * @throws ArithmeticException @@ -1286,7 +1286,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param unit * the unit of the period to subtract, not null * @return - * a { @code LocalDateTime} based on this date-time with the specified period subtracted, not + * a {@code LocalDateTime} based on this date-time with the specified period subtracted, not * null * @throws DateTimeException * if the unit cannot be added to this type @@ -1311,7 +1311,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param years * the years to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the years subtracted, not null + * a {@code LocalDateTime} based on this date-time with the years subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1334,7 +1334,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param months * the months to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the months subtracted, not null + * a {@code LocalDateTime} based on this date-time with the months subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1356,7 +1356,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param weeks * the weeks to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the weeks subtracted, not null + * a {@code LocalDateTime} based on this date-time with the weeks subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1378,7 +1378,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param days * the days to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the days subtracted, not null + * a {@code LocalDateTime} based on this date-time with the days subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1394,7 +1394,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param hours * the hours to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the hours subtracted, not null + * a {@code LocalDateTime} based on this date-time with the hours subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1408,7 +1408,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param minutes * the minutes to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the minutes subtracted, not null + * a {@code LocalDateTime} based on this date-time with the minutes subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1422,7 +1422,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param seconds * the seconds to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the seconds subtracted, not null + * a {@code LocalDateTime} based on this date-time with the seconds subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1437,7 +1437,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * @param nanos * the nanos to subtract, may be negative * @return - * a { @code LocalDateTime} based on this date-time with the nanoseconds subtracted, not null + * a {@code LocalDateTime} based on this date-time with the nanoseconds subtracted, not null * @throws DateTimeException * if the result exceeds the supported date range */ @@ -1545,7 +1545,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * This calculates the period between two date-times in terms of a single unit. The start and end * points are {@code this} and the specified date-time. The result will be negative if the end is - * before the start. The {@code Temporal} passed to this method must be a {@code LocalDateTime}. + * before the start. The {@code Temporal} passed to this method must be a {@code LocalDateTime} . * For example, the period in days between two date-times can be calculated using {@code * startDateTime.until(endDateTime, DAYS)}. * @@ -1553,26 +1553,26 @@ final class LocalDateTime private (private val date: LocalDate, private val time * two date-times. For example, the period in months between 2012-06-15T00:00 and 2012-08-14T23:59 * will only be one month as it is one minute short of two months. * - * This method operates in association with {@link TemporalUnit#between}. The result of this + * This method operates in association with {@link TemporalUnit#between} . The result of this * method is a {@code long} representing the amount of the specified unit. By contrast, the result * of {@code between} is an object that can be used directly in addition/subtraction:
     long
        * period = start.until(end, MONTHS); // this method dateTime.plus(MONTHS.between(start, end)); //
        * use in plus/minus 
    * - * The calculation is implemented in this method for {@link ChronoUnit}. The units {@code NANOS}, - * {@code MICROS}, {@code MILLIS}, {@code SECONDS}, {@code MINUTES}, {@code HOURS} and {@code - * HALF_DAYS}, {@code DAYS}, {@code WEEKS}, {@code MONTHS}, {@code YEARS}, {@code DECADES}, {@code - * CENTURIES}, {@code MILLENNIA} and {@code ERAS} are supported. Other {@code ChronoUnit} values - * will throw an exception. + * The calculation is implemented in this method for {@link ChronoUnit} . The units {@code NANOS} + * , {@code MICROS} , {@code MILLIS} , {@code SECONDS} , {@code MINUTES} , {@code HOURS} and + * {@code HALF_DAYS}, {@code DAYS} , {@code WEEKS} , {@code MONTHS} , {@code YEARS} , + * {@code DECADES} , {@code CENTURIES}, {@code MILLENNIA} and {@code ERAS} are supported. Other + * {@code ChronoUnit} values will throw an exception. * - * If the unit is not a {@code ChronoUnit}, then the result of this method is obtained by invoking - * {@code TemporalUnit.between(Temporal, Temporal)} passing {@code this} as the first argument and - * the input temporal as the second argument. + * If the unit is not a {@code ChronoUnit} , then the result of this method is obtained by + * invoking {@code TemporalUnit.between(Temporal, Temporal)} passing {@code this} as the first + * argument and the input temporal as the second argument. * * This instance is immutable and unaffected by this method call. * * @param endExclusive - * the end date-time, which is converted to a { @code LocalDateTime}, not null + * the end date-time, which is converted to a {@code LocalDateTime} , not null * @param unit * the unit to measure the period in, not null * @return @@ -1641,7 +1641,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time } /** - * Combines this date-time with an offset to create an {@code OffsetDateTime}. + * Combines this date-time with an offset to create an {@code OffsetDateTime} . * * This returns an {@code OffsetDateTime} formed from this date-time at the specified offset. All * possible combinations of date-time and offset are valid. @@ -1654,7 +1654,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time def atOffset(offset: ZoneOffset): OffsetDateTime = OffsetDateTime.of(this, offset) /** - * Combines this date-time with a time-zone to create a {@code ZonedDateTime}. + * Combines this date-time with a time-zone to create a {@code ZonedDateTime} . * * This returns a {@code ZonedDateTime} formed from this date-time at the specified time-zone. The * result will match this date-time as closely as possible. Time-zone rules, such as daylight @@ -1709,9 +1709,9 @@ final class LocalDateTime private (private val date: LocalDate, private val time * Compares this date-time to another date-time. * * The comparison is primarily based on the date-time, from earliest to latest. It is "consistent - * with equals", as defined by {@link Comparable}. + * with equals", as defined by {@link Comparable} . * - * If all the date-times being compared are instances of {@code LocalDateTime}, then the + * If all the date-times being compared are instances of {@code LocalDateTime} , then the * comparison will be entirely based on the date-time. If some dates being compared are in * different chronologies, then the chronology is also considered, see {@link * ChronoLocalDateTime#compareTo}. @@ -1739,13 +1739,12 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * This checks to see if this date-time represents a point on the local time-line after the other * date-time.
     LocalDate a = LocalDateTime.of(2012, 6, 30, 12, 00); LocalDate b =
    -   * LocalDateTime.of(2012, 7, 1, 12, 00);
    -   * a.isAfter(b) == false
    -   * a.isAfter(a) == false b.isAfter(a) == true 
    + * LocalDateTime.of(2012, 7, 1, 12, 00); a.isAfter(b) == false a.isAfter(a) == false b.isAfter(a) + * \== true
  • * * This method only considers the position of the two date-times on the local time-line. It does * not take into account the chronology, or calendar system. This is different from the comparison - * in {@link #compareTo(ChronoLocalDateTime)}, but is the same approach as {@link + * in {@link #compareTo(ChronoLocalDateTime)} , but is the same approach as {@link * #DATE_TIME_COMPARATOR}. * * @param other @@ -1764,13 +1763,12 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * This checks to see if this date-time represents a point on the local time-line before the other * date-time.
     LocalDate a = LocalDateTime.of(2012, 6, 30, 12, 00); LocalDate b =
    -   * LocalDateTime.of(2012, 7, 1, 12, 00);
    -   * a.isBefore(b) == true
    -   * a.isBefore(a) == false b.isBefore(a) == false 
    + * LocalDateTime.of(2012, 7, 1, 12, 00); a.isBefore(b) == true a.isBefore(a) == false + * b.isBefore(a) == false * * This method only considers the position of the two date-times on the local time-line. It does * not take into account the chronology, or calendar system. This is different from the comparison - * in {@link #compareTo(ChronoLocalDateTime)}, but is the same approach as {@link + * in {@link #compareTo(ChronoLocalDateTime)} , but is the same approach as {@link * #DATE_TIME_COMPARATOR}. * * @param other @@ -1789,13 +1787,12 @@ final class LocalDateTime private (private val date: LocalDate, private val time * * This checks to see if this date-time represents the same point on the local time-line as the * other date-time.
     LocalDate a = LocalDateTime.of(2012, 6, 30, 12, 00); LocalDate b =
    -   * LocalDateTime.of(2012, 7, 1, 12, 00);
    -   * a.isEqual(b) == false
    -   * a.isEqual(a) == true b.isEqual(a) == false 
    + * LocalDateTime.of(2012, 7, 1, 12, 00); a.isEqual(b) == false a.isEqual(a) == true b.isEqual(a) + * \== false * * This method only considers the position of the two date-times on the local time-line. It does * not take into account the chronology, or calendar system. This is different from the comparison - * in {@link #compareTo(ChronoLocalDateTime)}, but is the same approach as {@link + * in {@link #compareTo(ChronoLocalDateTime)} , but is the same approach as {@link * #DATE_TIME_COMPARATOR}. * * @param other @@ -1835,7 +1832,7 @@ final class LocalDateTime private (private val date: LocalDate, private val time override def hashCode: Int = date.hashCode ^ time.hashCode /** - * Outputs this date-time as a {@code String}, such as {@code 2007-12-03T10:15:30}. + * Outputs this date-time as a {@code String} , such as {@code 2007-12-03T10:15:30} . * * The output will be one of the following ISO-8601 formats:
    • {@code * yyyy-MM-dd'T'HH:mm}
    • {@code yyyy-MM-dd'T'HH:mm:ss}
    • {@code diff --git a/core/shared/src/main/scala/org/threeten/bp/LocalTime.scala b/core/shared/src/main/scala/org/threeten/bp/LocalTime.scala index 987ddb29d..9836d542b 100644 --- a/core/shared/src/main/scala/org/threeten/bp/LocalTime.scala +++ b/core/shared/src/main/scala/org/threeten/bp/LocalTime.scala @@ -69,13 +69,13 @@ object LocalTime { } /** - * The minimum supported {@code LocalTime}, '00:00'. This is the time of midnight at the start of + * The minimum supported {@code LocalTime} , '00:00'. This is the time of midnight at the start of * the day. */ lazy val MIN: LocalTime = HOURS(0) /** - * The maximum supported {@code LocalTime}, '23:59:59.999999999'. This is the time just before + * The maximum supported {@code LocalTime} , '23:59:59.999999999'. This is the time just before * midnight at the end of the day. */ lazy val MAX: LocalTime = new LocalTime(23, 59, 59, 999999999) @@ -260,7 +260,7 @@ object LocalTime { * This factory may return a cached value, but applications must not rely on this. * * @param secondOfDay - * the second-of-day, from { @code 0} to { @code 24 * 60 * 60 - 1} + * the second-of-day, from {@code 0} to {@code 24 * 60 * 60 - 1} * @return * the local time, not null * @throws DateTimeException @@ -283,7 +283,7 @@ object LocalTime { * This factory may return a cached value, but applications must not rely on this. * * @param secondOfDay - * the second-of-day, from { @code 0} to { @code 24 * 60 * 60 - 1} + * the second-of-day, from {@code 0} to {@code 24 * 60 * 60 - 1} * @param nanoOfSecond * the nano-of-second, from 0 to 999,999,999 * @return @@ -308,7 +308,7 @@ object LocalTime { * This factory may return a cached value, but applications must not rely on this. * * @param nanoOfDay - * the nano of day, from { @code 0} to { @code 24 * 60 * 60 * 1,000,000,000 - 1} + * the nano of day, from {@code 0} to {@code 24 * 60 * 60 * 1,000,000,000 - 1} * @return * the local time, not null * @throws DateTimeException @@ -330,20 +330,20 @@ object LocalTime { * Obtains an instance of {@code LocalTime} from a temporal object. * * A {@code TemporalAccessor} represents some form of date and time information. This factory - * converts the arbitrary temporal object to an instance of {@code LocalTime}. + * converts the arbitrary temporal object to an instance of {@code LocalTime} . * * The conversion uses the {@link TemporalQueries#localTime()} query, which relies on extracting * the {@link ChronoField#NANO_OF_DAY NANO_OF_DAY} field. * * This method matches the signature of the functional interface {@link TemporalQuery} allowing it - * to be used in queries via method reference, {@code LocalTime::from}. + * to be used in queries via method reference, {@code LocalTime::from} . * * @param temporal * the temporal object to convert, not null * @return * the local time, not null * @throws DateTimeException - * if unable to convert to a { @code LocalTime} + * if unable to convert to a {@code LocalTime} */ def from(temporal: TemporalAccessor): LocalTime = { val time: LocalTime = temporal.query(TemporalQueries.localTime) @@ -356,7 +356,7 @@ object LocalTime { } /** - * Obtains an instance of {@code LocalTime} from a text string such as {@code 10:15}. + * Obtains an instance of {@code LocalTime} from a text string such as {@code 10:15} . * * The string must represent a valid time and is parsed using {@link * org.threeten.bp.format.DateTimeFormatter#ISO_LOCAL_TIME}. @@ -417,11 +417,11 @@ object LocalTime { } /** - * A time without time-zone in the ISO-8601 calendar system, such as {@code 10:15:30}. + * A time without time-zone in the ISO-8601 calendar system, such as {@code 10:15:30} . * * {@code LocalTime} is an immutable date-time object that represents a time, often viewed as * hour-minute-second. Time is represented to nanosecond precision. For example, the value - * "13:45.30.123456789" can be stored in a {@code LocalTime}. + * "13:45.30.123456789" can be stored in a {@code LocalTime} . * * It does not store or represent a date or time-zone. Instead, it is a description of the local * time as seen on a wall clock. It cannot represent an instant on the time-line without additional @@ -476,7 +476,7 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: *
    • {@code CLOCK_HOUR_OF_DAY}
    • {@code AMPM_OF_DAY}
    All other {@code ChronoField} * instances will return false. * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the field is supported is determined by the field. * @@ -502,9 +502,9 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return appropriate range instances. All - * other {@code ChronoField} instances will throw a {@code DateTimeException}. + * other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} passing {@code this} as the * argument. Whether the range can be obtained is determined by the field. * @@ -518,7 +518,7 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: override def range(field: TemporalField): ValueRange = super.range(field) /** - * Gets the value of the specified field from this time as an {@code int}. + * Gets the value of the specified field from this time as an {@code int} . * * This queries this time for the value for the specified field. The returned value will always be * within the valid range of values for the field. If it is not possible to return the value, @@ -527,10 +527,10 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return valid values based on this time, * except {@code NANO_OF_DAY} and {@code MICRO_OF_DAY} which are too large to fit in an {@code - * int} and throw a {@code DateTimeException}. All other {@code ChronoField} instances will throw - * a {@code DateTimeException}. + * int} and throw a {@code DateTimeException} . All other {@code ChronoField} instances will throw + * a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -548,16 +548,16 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: else super.get(field) /** - * Gets the value of the specified field from this time as a {@code long}. + * Gets the value of the specified field from this time as a {@code long} . * * This queries this time for the value for the specified field. If it is not possible to return * the value, because the field is not supported or for some other reason, an exception is thrown. * * If the field is a {@link ChronoField} then the query is implemented here. The {@link * #isSupported(TemporalField) supported fields} will return valid values based on this time. All - * other {@code ChronoField} instances will throw a {@code DateTimeException}. + * other {@code ChronoField} instances will throw a {@code DateTimeException} . * - * If the field is not a {@code ChronoField}, then the result of this method is obtained by + * If the field is not a {@code ChronoField} , then the result of this method is obtained by * invoking {@code TemporalField.getFrom(TemporalAccessor)} passing {@code this} as the argument. * Whether the value can be obtained, and what the value represents, is determined by the field. * @@ -637,9 +637,9 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: /** * Returns an adjusted copy of this time. * - * This returns a new {@code LocalTime}, based on this one, with the time adjusted. The adjustment - * takes place using the specified adjuster strategy object. Read the documentation of the - * adjuster to understand what adjustment will be made. + * This returns a new {@code LocalTime} , based on this one, with the time adjusted. The + * adjustment takes place using the specified adjuster strategy object. Read the documentation of + * the adjuster to understand what adjustment will be made. * * A simple adjuster might simply set the one of the fields, such as the hour field. A more * complex adjuster might set the time to the last hour of the day. @@ -653,7 +653,7 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: * @param adjuster * the adjuster to use, not null * @return - * a { @code LocalTime} based on { @code this} with the adjustment made, not null + * a {@code LocalTime} based on {@code this} with the adjustment made, not null * @throws DateTimeException * if the adjustment cannot be made * @throws ArithmeticException @@ -668,16 +668,16 @@ final class LocalTime(_hour: Int, _minute: Int, _second: Int, private val nano: /** * Returns a copy of this time with the specified field set to a new value. * - * This returns a new {@code LocalTime}, based on this one, with the value for the specified field - * changed. This can be used to change any supported field, such as the hour, minute or second. If - * it is not possible to set the value, because the field is not supported or for some other - * reason, an exception is thrown. + * This returns a new {@code LocalTime} , based on this one, with the value for the specified + * field changed. This can be used to change any supported field, such as the hour, minute or + * second. If it is not possible to set the value, because the field is not supported or for some + * other reason, an exception is thrown. * * If the field is a {@link ChronoField} then the adjustment is implemented here. The supported * fields behave as follows:

    As this formatter has an optional - * element, it may be necessary to parse using {@link DateTimeFormatter#parseBest}. + * element, it may be necessary to parse using {@link DateTimeFormatter#parseBest} . */ lazy val ISO_DATE: DateTimeFormatter = new DateTimeFormatterBuilder().parseCaseInsensitive .append(ISO_LOCAL_DATE) @@ -125,12 +126,12 @@ object DateTimeFormatter { * This returns an immutable formatter capable of printing and parsing the ISO-8601 extended local * time format. The format consists of:

    */ lazy val ISO_LOCAL_TIME: DateTimeFormatter = new DateTimeFormatterBuilder() @@ -198,7 +199,7 @@ object DateTimeFormatter { * * This returns an immutable formatter capable of printing and parsing the ISO-8601 extended * offset date-time format. The format consists of:

    */ @@ -243,7 +244,7 @@ object DateTimeFormatter { * ZoneOffset} then the format is complete.

  • An open square bracket '['.
  • The {@link * ZoneId#getId() zone ID}. This is not part of the ISO-8601 standard. Parsing is case sensitive. *
  • A close square bracket ']'.

    As this formatter has an optional element, it may be - * necessary to parse using {@link DateTimeFormatter#parseBest}. + * necessary to parse using {@link DateTimeFormatter#parseBest} . */ lazy val ISO_DATE_TIME: DateTimeFormatter = new DateTimeFormatterBuilder() .append(ISO_LOCAL_DATE_TIME) @@ -265,12 +266,12 @@ object DateTimeFormatter { * ordinal date format. The format consists of:

    As this formatter has an optional element, it may be necessary to - * parse using {@link DateTimeFormatter#parseBest}. + * parse using {@link DateTimeFormatter#parseBest} . */ lazy val ISO_ORDINAL_DATE: DateTimeFormatter = new DateTimeFormatterBuilder().parseCaseInsensitive .appendValue(YEAR, 4, 10, SignStyle.EXCEEDS_PAD) @@ -290,13 +291,13 @@ object DateTimeFormatter { * IsoFields#WEEK_BASED_YEAR week-based-year}. Years in the range 0000 to 9999 will be pre-padded * by zero to ensure four digits. Years outside that range will have a prefixed positive or * negative symbol.

  • A dash
  • The letter 'W'. Parsing is case insensitive.
  • Two digits for - * the {@link IsoFields#WEEK_OF_WEEK_BASED_YEAR week-of-week-based-year}. This is pre-padded by + * the {@link IsoFields#WEEK_OF_WEEK_BASED_YEAR week-of-week-based-year} . This is pre-padded by * zero to ensure three digits.
  • A dash
  • One digit for the {@link ChronoField#DAY_OF_WEEK * day-of-week}. The value run from Monday (1) to Sunday (7).
  • If the offset is not available - * to print/parse then the format is complete.
  • The {@link ZoneOffset#getId() offset ID}. If + * to print/parse then the format is complete.
  • The {@link ZoneOffset#getId() offset ID} . If * the offset has seconds then they will be handled even though this is not part of the ISO-8601 * standard. Parsing is case insensitive.

    As this formatter has an optional element, it - * may be necessary to parse using {@link DateTimeFormatter#parseBest}. + * may be necessary to parse using {@link DateTimeFormatter#parseBest} . */ lazy val ISO_WEEK_DATE: DateTimeFormatter = new DateTimeFormatterBuilder().parseCaseInsensitive .appendValue(IsoFields.WEEK_BASED_YEAR, 4, 10, SignStyle.EXCEEDS_PAD) @@ -324,7 +325,7 @@ object DateTimeFormatter { * point in time and internally stores a value in nanoseconds from a fixed epoch of 1970-01-01Z. * As such, an {@code Instant} cannot be formatted as a date or time without providing some form * of time-zone. This formatter allows the {@code Instant} to be formatted, by providing a - * suitable conversion using {@code ZoneOffset.UTC}. + * suitable conversion using {@code ZoneOffset.UTC} . * * The format consists of: