Searched refs:otherInstant (Results 1 – 1 of 1) sorted by relevance
1248 public int compareTo(Instant otherInstant) { in compareTo() argument1249 int cmp = Long.compare(seconds, otherInstant.seconds); in compareTo()1253 return nanos - otherInstant.nanos; in compareTo()1265 public boolean isAfter(Instant otherInstant) { in isAfter() argument1266 return compareTo(otherInstant) > 0; in isAfter()1278 public boolean isBefore(Instant otherInstant) { in isBefore() argument1279 return compareTo(otherInstant) < 0; in isBefore()1292 public boolean equals(Object otherInstant) { in equals() argument1293 if (this == otherInstant) { in equals()1296 if (otherInstant instanceof Instant) { in equals()[all …]