public boolean equals()

in api/src/main/java/org/apache/fineract/cn/deposit/api/v1/instance/domain/AvailableTransactionType.java [41:48]


  public boolean equals(final Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;

    final AvailableTransactionType that = (AvailableTransactionType) o;

    return transactionType.equals(that.transactionType);
  }