Uses of Class
gate.creole.annic.apache.lucene.analysis.Analyzer

Packages that use Analyzer
gate.creole.annic.apache.lucene.index Code to maintain and access indices. 
gate.creole.annic.lucene   
 

Uses of Analyzer in gate.creole.annic.apache.lucene.index
 

Fields in gate.creole.annic.apache.lucene.index declared as Analyzer
private  Analyzer DocumentWriter.analyzer
           
private  Analyzer IndexWriter.analyzer
           
 

Methods in gate.creole.annic.apache.lucene.index that return Analyzer
 Analyzer IndexWriter.getAnalyzer()
          Returns the analyzer used by this index.
 

Methods in gate.creole.annic.apache.lucene.index with parameters of type Analyzer
 void IndexWriter.addDocument(Document doc, Analyzer analyzer)
          Adds a document to this index, using the provided analyzer instead of the value of IndexWriter.getAnalyzer().
 

Constructors in gate.creole.annic.apache.lucene.index with parameters of type Analyzer
DocumentWriter(Directory directory, Analyzer analyzer, Similarity similarity, int maxFieldLength)
           
IndexWriter(Directory d, Analyzer a, boolean create)
          Constructs an IndexWriter for the index in d.
IndexWriter(Directory d, Analyzer a, boolean create, boolean closeDir)
           
IndexWriter(File path, Analyzer a, boolean create)
          Constructs an IndexWriter for the index in path.
IndexWriter(String path, Analyzer a, boolean create)
          Constructs an IndexWriter for the index in path.
 

Uses of Analyzer in gate.creole.annic.lucene
 

Subclasses of Analyzer in gate.creole.annic.lucene
 class LuceneAnalyzer
          This class provides an implementation for Analyzer which is used internally by ANNIC resources.