Class DocumentAnalysisResponse.DocumentAnalysis
- java.lang.Object
- 
- org.apache.solr.client.solrj.response.DocumentAnalysisResponse.DocumentAnalysis
 
- 
- All Implemented Interfaces:
- Iterable<Map.Entry<String,DocumentAnalysisResponse.FieldAnalysis>>
 - Enclosing class:
- DocumentAnalysisResponse
 
 public static class DocumentAnalysisResponse.DocumentAnalysis extends Object implements Iterable<Map.Entry<String,DocumentAnalysisResponse.FieldAnalysis>> An analysis process breakdown of a document. Holds a map of field analyses by the field name.
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDocumentKey()Returns the unique key of the analyzed document.intgetFieldAnalysesCount()Returns the number of field analyses for the documents.DocumentAnalysisResponse.FieldAnalysisgetFieldAnalysis(String fieldName)Iterator<Map.Entry<String,DocumentAnalysisResponse.FieldAnalysis>>iterator()Returns an iterator over the field analyses map.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.lang.IterableforEach, spliterator
 
- 
 
- 
- 
- 
Method Detail- 
getDocumentKeypublic String getDocumentKey() Returns the unique key of the analyzed document.- Returns:
- The unique key of the analyzed document.
 
 - 
getFieldAnalysesCountpublic int getFieldAnalysesCount() Returns the number of field analyses for the documents.- Returns:
- The number of field analyses for the documents.
 
 - 
getFieldAnalysispublic DocumentAnalysisResponse.FieldAnalysis getFieldAnalysis(String fieldName) 
 - 
iteratorpublic Iterator<Map.Entry<String,DocumentAnalysisResponse.FieldAnalysis>> iterator() Returns an iterator over the field analyses map.- Specified by:
- iteratorin interface- Iterable<Map.Entry<String,DocumentAnalysisResponse.FieldAnalysis>>
- Returns:
- An iterator over the field analyses map.
 
 
- 
 
-