FileDocCategorySizeDatePackage
LuceneDictionary.javaAPI DocApache Lucene 2.1.02603Wed Feb 14 10:46:24 GMT 2007org.apache.lucene.search.spell

LuceneDictionary

public class LuceneDictionary extends Object implements Dictionary
Lucene Dictionary
author
Nicolas Maisonneuve

Fields Summary
private IndexReader
reader
private String
field
Constructors Summary
public LuceneDictionary(IndexReader reader, String field)

    this.reader = reader;
    this.field = field.intern();
  
Methods Summary
public final java.util.IteratorgetWordsIterator()

    return new LuceneIterator();