Class SearchResponse.Clusters

  • All Implemented Interfaces:
    Writeable, ToXContent
    Enclosing class:
    SearchResponse

    public static class SearchResponse.Clusters
    extends java.lang.Object
    implements ToXContent, Writeable
    Holds info about the clusters that the search was executed on: how many in total, how many of them were successful and how many of them were skipped.
    • Constructor Detail

      • Clusters

        public Clusters​(int total,
                        int successful,
                        int skipped)
    • Method Detail

      • getTotal

        public int getTotal()
        Returns how many total clusters the search was requested to be executed on
      • getSuccessful

        public int getSuccessful()
        Returns how many total clusters the search was executed successfully on
      • getSkipped

        public int getSkipped()
        Returns how many total clusters were during the execution of the search request
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object