Searched refs:otherDate (Results 1 – 5 of 5) sorted by relevance
624 HijrahDate otherDate = (HijrahDate) obj; in equals() local625 return prolepticYear == otherDate.prolepticYear in equals()626 && this.monthOfYear == otherDate.monthOfYear in equals()627 && this.dayOfMonth == otherDate.dayOfMonth in equals()628 && getChronology().equals(otherDate.getChronology()); in equals()
455 ThaiBuddhistDate otherDate = (ThaiBuddhistDate) obj; in equals() local456 return this.isoDate.equals(otherDate.isoDate); in equals()
455 MinguoDate otherDate = (MinguoDate) obj; in equals() local456 return this.isoDate.equals(otherDate.isoDate); in equals()
700 JapaneseDate otherDate = (JapaneseDate) obj; in equals() local701 return this.isoDate.equals(otherDate.isoDate); in equals()
1866 int compareTo0(LocalDate otherDate) { in compareTo0() argument1867 int cmp = (year - otherDate.year); in compareTo0()1869 cmp = (month - otherDate.month); in compareTo0()1871 cmp = (day - otherDate.day); in compareTo0()