org.apache.lucene.analysis.hunspell
Class HunspellDictionary

java.lang.Object
  extended by org.apache.lucene.analysis.hunspell.HunspellDictionary

public class HunspellDictionary
extends Object


Constructor Summary
HunspellDictionary(InputStream affix, InputStream dictionary, org.apache.lucene.util.Version version)
          Creates a new HunspellDictionary containing the information read from the provided InputStreams to hunspell affix and dictionary files
HunspellDictionary(InputStream affix, InputStream dictionary, org.apache.lucene.util.Version version, boolean ignoreCase)
          Creates a new HunspellDictionary containing the information read from the provided InputStreams to hunspell affix and dictionary files
HunspellDictionary(InputStream affix, List<InputStream> dictionaries, org.apache.lucene.util.Version version, boolean ignoreCase)
          Creates a new HunspellDictionary containing the information read from the provided InputStreams to hunspell affix and dictionary files
 
Method Summary
 org.apache.lucene.util.Version getVersion()
           
 boolean isIgnoreCase()
           
 List<HunspellAffix> lookupPrefix(char[] word, int offset, int length)
          Looks up HunspellAffix prefixes that have an append that matches the String created from the given char array, offset and length
 List<HunspellAffix> lookupSuffix(char[] word, int offset, int length)
          Looks up HunspellAffix suffixes that have an append that matches the String created from the given char array, offset and length
 List<HunspellWord> lookupWord(char[] word, int offset, int length)
          Looks up HunspellWords that match the String created from the given char array, offset and length
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HunspellDictionary

public HunspellDictionary(InputStream affix,
                          InputStream dictionary,
                          org.apache.lucene.util.Version version)
                   throws IOException,
                          ParseException
Creates a new HunspellDictionary containing the information read from the provided InputStreams to hunspell affix and dictionary files

Parameters:
affix - InputStream for reading the hunspell affix file
dictionary - InputStream for reading the hunspell dictionary file
version - Lucene Version
Throws:
IOException - Can be thrown while reading from the InputStreams
ParseException - Can be thrown if the content of the files does not meet expected formats

HunspellDictionary

public HunspellDictionary(InputStream affix,
                          InputStream dictionary,
                          org.apache.lucene.util.Version version,
                          boolean ignoreCase)
                   throws IOException,
                          ParseException
Creates a new HunspellDictionary containing the information read from the provided InputStreams to hunspell affix and dictionary files

Parameters:
affix - InputStream for reading the hunspell affix file
dictionary - InputStream for reading the hunspell dictionary file
version - Lucene Version
ignoreCase - If true, dictionary matching will be case insensitive
Throws:
IOException - Can be thrown while reading from the InputStreams
ParseException - Can be thrown if the content of the files does not meet expected formats

HunspellDictionary

public HunspellDictionary(InputStream affix,
                          List<InputStream> dictionaries,
                          org.apache.lucene.util.Version version,
                          boolean ignoreCase)
                   throws IOException,
                          ParseException
Creates a new HunspellDictionary containing the information read from the provided InputStreams to hunspell affix and dictionary files

Parameters:
affix - InputStream for reading the hunspell affix file
dictionaries - InputStreams for reading the hunspell dictionary file
version - Lucene Version
ignoreCase - If true, dictionary matching will be case insensitive
Throws:
IOException - Can be thrown while reading from the InputStreams
ParseException - Can be thrown if the content of the files does not meet expected formats
Method Detail

lookupWord

public List<HunspellWord> lookupWord(char[] word,
                                     int offset,
                                     int length)
Looks up HunspellWords that match the String created from the given char array, offset and length

Parameters:
word - Char array to generate the String from
offset - Offset in the char array that the String starts at
length - Length from the offset that the String is
Returns:
List of HunspellWords that match the generated String, or null if none are found

lookupPrefix

public List<HunspellAffix> lookupPrefix(char[] word,
                                        int offset,
                                        int length)
Looks up HunspellAffix prefixes that have an append that matches the String created from the given char array, offset and length

Parameters:
word - Char array to generate the String from
offset - Offset in the char array that the String starts at
length - Length from the offset that the String is
Returns:
List of HunspellAffix prefixes with an append that matches the String, or null if none are found

lookupSuffix

public List<HunspellAffix> lookupSuffix(char[] word,
                                        int offset,
                                        int length)
Looks up HunspellAffix suffixes that have an append that matches the String created from the given char array, offset and length

Parameters:
word - Char array to generate the String from
offset - Offset in the char array that the String starts at
length - Length from the offset that the String is
Returns:
List of HunspellAffix suffixes with an append that matches the String, or null if none are found

getVersion

public org.apache.lucene.util.Version getVersion()

isIgnoreCase

public boolean isIgnoreCase()


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