Package | Description |
---|---|
org.apache.lucene.ant |
Ant task to create Lucene indexes.
|
org.apache.lucene.benchmark.byTask.feeds |
Sources for benchmark inputs: documents and queries.
|
org.apache.lucene.benchmark.standard | |
org.apache.lucene.demo | |
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Method and Description |
---|---|
static Document |
HtmlDocument.Document(File file)
Creates a Lucene
Document from a File . |
static Document |
TextDocument.Document(File f)
Makes a document for a File.
|
Document |
DocumentHandler.getDocument(File file)
Gets the document attribute of the DocumentHandler object
|
Document |
FileExtensionDocumentHandler.getDocument(File file)
Gets the document attribute of the
FileExtensionDocumentHandler object
|
static Document |
HtmlDocument.getDocument(InputStream is)
Creates a Lucene
Document from an InputStream . |
Modifier and Type | Method and Description |
---|---|
Document |
BasicDocMaker.makeDocument() |
Document |
LineDocMaker.makeDocument() |
Document |
EnwikiDocMaker.makeDocument() |
Document |
DocMaker.makeDocument()
Create the next document.
|
Document |
BasicDocMaker.makeDocument(int size) |
Document |
LineDocMaker.makeDocument(int size) |
Document |
DocMaker.makeDocument(int size)
Create the next document, of the given size by input bytes.
|
Modifier and Type | Method and Description |
---|---|
protected Document |
StandardBenchmarker.makeDocument(File in,
String[] tags,
boolean stored,
boolean tokenized,
boolean tfv)
Deprecated.
Parse the Reuters SGML and index:
Date, Title, Dateline, Body
|
Modifier and Type | Method and Description |
---|---|
static Document |
FileDocument.Document(File f)
Makes a document for a File.
|
static Document |
HTMLDocument.Document(File f) |
Modifier and Type | Method and Description |
---|---|
Document |
IndexReader.document(int n)
Returns the stored fields of the
n th
Document in this index. |
Document |
MultiReader.document(int n,
FieldSelector fieldSelector) |
abstract Document |
IndexReader.document(int n,
FieldSelector fieldSelector)
Get the
Document at the n th position. |
Document |
FilterIndexReader.document(int n,
FieldSelector fieldSelector) |
Document |
ParallelReader.document(int n,
FieldSelector fieldSelector) |
Modifier and Type | Method and Description |
---|---|
void |
IndexWriter.addDocument(Document doc)
Adds a document to this index.
|
void |
IndexModifier.addDocument(Document doc)
Deprecated.
Adds a document to this index.
|
void |
IndexWriter.addDocument(Document doc,
Analyzer analyzer)
Adds a document to this index, using the provided analyzer instead of the
value of
IndexWriter.getAnalyzer() . |
void |
IndexModifier.addDocument(Document doc,
Analyzer docAnalyzer)
Deprecated.
Adds a document to this index, using the provided analyzer instead of the
one specific in the constructor.
|
void |
IndexWriter.updateDocument(Term term,
Document doc)
Updates a document by first deleting the document(s)
containing
term and then adding the new
document. |
void |
IndexWriter.updateDocument(Term term,
Document doc,
Analyzer analyzer)
Updates a document by first deleting the document(s)
containing
term and then adding the new
document. |
Modifier and Type | Method and Description |
---|---|
Document |
MultiSearcher.doc(int n) |
Document |
IndexSearcher.doc(int i) |
abstract Document |
Searcher.doc(int i) |
Document |
Searchable.doc(int i)
Expert: Returns the stored fields of document
i . |
Document |
Hits.doc(int n)
Returns the stored fields of the nth document in this set.
|
Document |
RemoteSearchable.doc(int i) |
Document |
MultiSearcher.doc(int n,
FieldSelector fieldSelector) |
Document |
IndexSearcher.doc(int i,
FieldSelector fieldSelector) |
Document |
Searchable.doc(int n,
FieldSelector fieldSelector)
Get the
Document at the n th position. |
Document |
RemoteSearchable.doc(int i,
FieldSelector fieldSelector) |
Document |
Hit.getDocument()
Returns document for this hit.
|
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.