Class Cluster
java.lang.Object
org.apache.solr.client.solrj.response.Cluster
This class represents a cluster of Solr Docs . The cluster is produced from a set of Solr
documents from the results. It is a direct mapping for the Json object Solr is returning.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Cluster
-
Cluster
public Cluster(List<String> labels, double score, List<String> docIds, List<Cluster> subclusters, boolean otherTopics) - Parameters:
labels- the list of human-readable labels associated to the clusterscore- the score produced by the clustering algorithm for the current clusterdocIds- the list of document Ids belonging to the cluster
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
getLabels
-
setLabels
-
getScore
public double getScore() -
setScore
public void setScore(double score) -
getDocs
-
setDocs
-
getClusters
-
isOtherTopics
public boolean isOtherTopics()- Returns:
- If
true, the cluster contains references to documents that are not semantically associated and form a group of documents not related to any other cluster (or themselves).
-