Uses of Class
org.apache.lucene.document.Document
-
Packages that use Document Package Description org.apache.lucene.document org.apache.lucene.index org.apache.lucene.search -
-
Uses of Document in org.apache.lucene.document
Methods 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.index
Methods 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.search
Methods 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)
-