Uses of Class
org.apache.lucene.document.Document

Packages that use Document
org.apache.lucene.ant   
org.apache.lucene.demo   
org.apache.lucene.index Code to maintain and access indices. 
org.apache.lucene.search Search over indices. 
 

Uses of Document in org.apache.lucene.ant
 

Methods in org.apache.lucene.ant that return Document
 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 TextDocument.Document(File f)
          Makes a document for a File.
static Document HtmlDocument.getDocument(InputStream is)
          Creates a Lucene Document from an InputStream.
static Document HtmlDocument.Document(File file)
          Creates a Lucene Document from a File.
 

Uses of Document in org.apache.lucene.demo
 

Methods in org.apache.lucene.demo that return Document
static Document FileDocument.Document(File f)
          Makes a document for a File.
static Document HTMLDocument.Document(File f)
           
 

Uses of Document in org.apache.lucene.index
 

Methods in org.apache.lucene.index that return Document
abstract  Document IndexReader.document(int n)
          Returns the stored fields of the nth Document in this index.
 Document MultiReader.document(int n)
           
 Document ParallelReader.document(int n)
           
 Document FilterIndexReader.document(int n)
           
 

Methods in org.apache.lucene.index with parameters of type Document
 void IndexModifier.addDocument(Document doc, Analyzer docAnalyzer)
          Adds a document to this index, using the provided analyzer instead of the one specific in the constructor.
 void IndexModifier.addDocument(Document doc)
          Adds a document to this index.
 void IndexWriter.addDocument(Document doc)
          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().
 

Uses of Document in org.apache.lucene.search
 

Methods in org.apache.lucene.search that return Document
 Document Hits.doc(int n)
          Returns the stored fields of the nth document in this set.
 Document IndexSearcher.doc(int i)
           
abstract  Document Searcher.doc(int i)
           
 Document Hit.getDocument()
          Returns document for this hit.
 Document MultiSearcher.doc(int n)
           
 Document RemoteSearchable.doc(int i)
           
 Document Searchable.doc(int i)
          Expert: Returns the stored fields of document i.
 



Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.