Package org.apache.lucene.search.spell
Class LuceneDictionary
- java.lang.Object
-
- org.apache.lucene.search.spell.LuceneDictionary
-
- All Implemented Interfaces:
Dictionary
public class LuceneDictionary extends java.lang.Object implements Dictionary
Lucene Dictionary: terms taken from the given field of a Lucene index.
-
-
Constructor Summary
Constructors Constructor Description LuceneDictionary(IndexReader reader, java.lang.String field)
Creates a new Dictionary, pulling source terms from the specifiedfield
in the providedreader
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InputIterator
getEntryIterator()
Returns an iterator over all the entries
-
-
-
Constructor Detail
-
LuceneDictionary
public LuceneDictionary(IndexReader reader, java.lang.String field)
Creates a new Dictionary, pulling source terms from the specifiedfield
in the providedreader
-
-
Method Detail
-
getEntryIterator
public final InputIterator getEntryIterator() throws java.io.IOException
Description copied from interface:Dictionary
Returns an iterator over all the entries- Specified by:
getEntryIterator
in interfaceDictionary
- Returns:
- Iterator
- Throws:
java.io.IOException
-
-