Uses of Class
org.apache.lucene.document.Document
- 
Packages that use Document Package Description org.apache.lucene.document The logical representation of aDocumentfor indexing and searching.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices.
- 
- 
Uses of Document in org.apache.lucene.documentMethods in org.apache.lucene.document that return Document Modifier and Type Method Description DocumentDocumentStoredFieldVisitor. getDocument()Retrieve the visited document.
- 
Uses of Document in org.apache.lucene.indexMethods in org.apache.lucene.index that return Document Modifier and Type Method Description DocumentIndexReader. document(int docID)Returns the stored fields of thenthDocumentin this index.DocumentIndexReader. document(int docID, Set<String> fieldsToLoad)LikeIndexReader.document(int)but only loads the specified fields.
- 
Uses of Document in org.apache.lucene.searchMethods in org.apache.lucene.search that return Document Modifier and Type Method Description DocumentIndexSearcher. doc(int docID)Sugar for.getIndexReader().document(docID)DocumentIndexSearcher. doc(int docID, Set<String> fieldsToLoad)Sugar for.getIndexReader().document(docID, fieldsToLoad)
 
-