|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Packages that use Document | |
|---|---|
| org.apache.lucene.document | The logical representation of a Document for 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.document |
|---|
| Methods in org.apache.lucene.document that return Document | |
|---|---|
Document |
DocumentStoredFieldVisitor.getDocument()
Retrieve the visited document. |
| Uses of Document in org.apache.lucene.index |
|---|
| Methods in org.apache.lucene.index that return Document | |
|---|---|
Document |
IndexReader.document(int docID)
Returns the stored fields of the nth
Document in this index. |
Document |
IndexReader.document(int docID,
Set<String> fieldsToLoad)
Like IndexReader.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 | |
|---|---|
Document |
IndexSearcher.doc(int docID)
Sugar for .getIndexReader().document(docID) |
Document |
IndexSearcher.document(int docID,
Set<String> fieldsToLoad)
Sugar for .getIndexReader().document(docID, fieldsToLoad) |
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||