public boolean equals()

in api/src/main/java/org/apache/fineract/cn/office/api/v1/domain/ContactDetail.java [87:95]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    ContactDetail that = (ContactDetail) o;
    return type == that.type &&
            group == that.group &&
            Objects.equals(value, that.value) &&
            Objects.equals(preferenceLevel, that.preferenceLevel);
  }