Home
last modified time | relevance | path

Searched refs:otherInstant (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
DInstant.java1248 public int compareTo(Instant otherInstant) { in compareTo() argument
1249 int cmp = Long.compare(seconds, otherInstant.seconds); in compareTo()
1253 return nanos - otherInstant.nanos; in compareTo()
1265 public boolean isAfter(Instant otherInstant) { in isAfter() argument
1266 return compareTo(otherInstant) > 0; in isAfter()
1278 public boolean isBefore(Instant otherInstant) { in isBefore() argument
1279 return compareTo(otherInstant) < 0; in isBefore()
1292 public boolean equals(Object otherInstant) { in equals() argument
1293 if (this == otherInstant) { in equals()
1296 if (otherInstant instanceof Instant) { in equals()
[all …]