Searched defs:otherDuration (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
H A DDuration.java1192 * @param otherDuration the other duration to compare to, not null
1196 public int compareTo(Duration otherDuration) { argument
1197 int cmp = Long.compare(seconds, otherDuration.seconds);
1201 return nanos - otherDuration.nanos;
1210 * @param otherDuration the other duration, null returns false
1214 public boolean equals(Object otherDuration) { argument
1215 if (this == otherDuration) {
1218 if (otherDuration instanceof Duration) {
1219 Duration other = (Duration) otherDuration;

Completed in 57 milliseconds