| Package | Description |
|---|---|
| org.apache.lucene.analysis.hunspell |
Stemming TokenFilter using a Java implementation of the
Hunspell stemming algorithm.
|
| Constructor and Description |
|---|
HunspellStemFilter(TokenStream input,
HunspellDictionary dictionary)
Create a
HunspellStemFilter which deduplicates stems and has a maximum
recursion level of 2. |
HunspellStemFilter(TokenStream input,
HunspellDictionary dictionary,
boolean dedup)
Create a
HunspellStemFilter which has a maximum recursion level of 2. |
HunspellStemFilter(TokenStream input,
HunspellDictionary dictionary,
boolean dedup,
int recursionCap)
Creates a new HunspellStemFilter that will stem tokens from the given TokenStream using affix rules in the provided
HunspellDictionary
|
HunspellStemFilter(TokenStream input,
HunspellDictionary dictionary,
int recursionCap)
Creates a new HunspellStemFilter that will stem tokens from the given TokenStream using affix rules in the provided
HunspellDictionary
|
HunspellStemmer(HunspellDictionary dictionary)
Constructs a new HunspellStemmer which will use the provided HunspellDictionary to create its stems.
|
HunspellStemmer(HunspellDictionary dictionary,
int recursionCap)
Constructs a new HunspellStemmer which will use the provided HunspellDictionary to create its stems
|
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.