Package org.apache.lucene.search.spell
Class PlainTextDictionary
- java.lang.Object
-
- org.apache.lucene.search.spell.PlainTextDictionary
-
- All Implemented Interfaces:
Dictionary
public class PlainTextDictionary extends java.lang.Object implements Dictionary
Dictionary represented by a text file. Format allowed: 1 word per line:
word1
word2
word3
-
-
Constructor Summary
Constructors Constructor Description PlainTextDictionary(java.io.File file)
Creates a dictionary based on a File.PlainTextDictionary(java.io.InputStream dictFile)
Creates a dictionary based on an inputstream.PlainTextDictionary(java.io.Reader reader)
Creates a dictionary based on a reader.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InputIterator
getEntryIterator()
Returns an iterator over all the entries
-
-
-
Constructor Detail
-
PlainTextDictionary
public PlainTextDictionary(java.io.File file) throws java.io.IOException
Creates a dictionary based on a File.NOTE: content is treated as UTF-8
- Throws:
java.io.IOException
-
PlainTextDictionary
public PlainTextDictionary(java.io.InputStream dictFile)
Creates a dictionary based on an inputstream.NOTE: content is treated as UTF-8
-
PlainTextDictionary
public PlainTextDictionary(java.io.Reader reader)
Creates a dictionary based on a reader.
-
-
Method Detail
-
getEntryIterator
public 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
-
-