public boolean equals()

in metron-platform/metron-indexing/metron-indexing-common/src/main/java/org/apache/metron/indexing/dao/search/SearchRequest.java [120:136]


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

    SearchRequest that = (SearchRequest) o;

    return (indices != null ? indices.equals(that.indices) : that.indices == null) &&
        (query != null ? query.equals(that.query) : that.query == null) && size == that.size &&
        from == that.from &&
        (sort != null ? sort.equals(that.sort) : that.sort == null) &&
        (fields != null ? fields.equals(that.fields) : that.fields == null) &&
        (facetFields != null ? facetFields.equals(that.facetFields) : that.facetFields == null);
  }