mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8310033: Clarify return value of Java Time compareTo methods
Reviewed-by: bpb, scolebourne, prappo, naoto
This commit is contained in:
parent
25058cd23a
commit
8650026ff1
17 changed files with 84 additions and 35 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -1807,7 +1807,11 @@ public final class LocalDateTime
|
|||
* chronology is also considered, see {@link ChronoLocalDateTime#compareTo}.
|
||||
*
|
||||
* @param other the other date-time to compare to, not null
|
||||
* @return the comparator value, negative if less, positive if greater
|
||||
* @return the comparator value, that is the comparison of this local date-time with
|
||||
* the {@code other} local date-time and this chronology with the {@code other} chronology,
|
||||
* in order, returning the first non-zero result, and otherwise returning zero
|
||||
* @see #isBefore
|
||||
* @see #isAfter
|
||||
*/
|
||||
@Override // override for Javadoc and performance
|
||||
public int compareTo(ChronoLocalDateTime<?> other) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue