org.apache.solr.client.solrj.response
Class DocumentAnalysisResponse
java.lang.Object
org.apache.solr.client.solrj.SolrResponse
org.apache.solr.client.solrj.response.SolrResponseBase
org.apache.solr.client.solrj.response.AnalysisResponseBase
org.apache.solr.client.solrj.response.DocumentAnalysisResponse
- All Implemented Interfaces:
- Serializable, Iterable<Map.Entry<String,DocumentAnalysisResponse.DocumentAnalysis>>
public class DocumentAnalysisResponse
- extends AnalysisResponseBase
- implements Iterable<Map.Entry<String,DocumentAnalysisResponse.DocumentAnalysis>>
A response that is returned by processing the DocumentAnalysisRequest
.
Holds a map of DocumentAnalysisResponse.DocumentAnalysis
objects by a document id (unique key).
- Since:
- solr 1.4
- See Also:
- Serialized Form
DocumentAnalysisResponse
public DocumentAnalysisResponse()
setResponse
public void setResponse(NamedList<Object> response)
-
- Overrides:
setResponse
in class SolrResponseBase
getDocumentAnalysesCount
public int getDocumentAnalysesCount()
- Returns the number of document analyses in this response.
- Returns:
- The number of document analyses in this response.
getDocumentAnalysis
public DocumentAnalysisResponse.DocumentAnalysis getDocumentAnalysis(String documentKey)
- Returns the document analysis for the document associated with the given unique key (id),
null
if no such
association exists.
- Parameters:
documentKey
- The document unique key.
- Returns:
- The document analysis for the document associated with the given unique key (id).
iterator
public Iterator<Map.Entry<String,DocumentAnalysisResponse.DocumentAnalysis>> iterator()
- Returns an iterator over the document analyses map.
- Specified by:
iterator
in interface Iterable<Map.Entry<String,DocumentAnalysisResponse.DocumentAnalysis>>
- Returns:
- An iterator over the document analyses map.
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.