public boolean equals()

in api/src/main/java/org/apache/fineract/cn/individuallending/api/v1/domain/caseinstance/PlannedPaymentPage.java [71:79]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    PlannedPaymentPage that = (PlannedPaymentPage) o;
    return Objects.equals(chargeNames, that.chargeNames) &&
            Objects.equals(elements, that.elements) &&
            Objects.equals(totalPages, that.totalPages) &&
            Objects.equals(totalElements, that.totalElements);
  }