in commons/src/main/java/com/epam/eco/schemacatalog/fts/SearchResult.java [179:194]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
SearchResult<?> that = (SearchResult<?>) obj;
return
Objects.equals(this.content, that.content) &&
Objects.equals(this.pageNumber, that.pageNumber) &&
Objects.equals(this.pageSize, that.pageSize) &&
Objects.equals(this.totalElements, that.totalElements) &&
Objects.equals(this.maxResultWindow, that.maxResultWindow) &&
Objects.equals(this.aggregations, that.aggregations);
}