| |
|
| java.lang.Object org.apache.lucene.analysis.Analyzer org.apache.lucene.analysis.br.BrazilianAnalyzer
BrazilianAnalyzer | final public class BrazilianAnalyzer extends Analyzer (Code) | | Analyzer for Brazilian language. Supports an external list of stopwords (words that
will not be indexed at all) and an external list of exclusions (word that will
not be stemmed, but indexed).
author: João Kramer |
BRAZILIAN_STOP_WORDS | final public static String[] BRAZILIAN_STOP_WORDS(Code) | | List of typical Brazilian stopwords.
|
BrazilianAnalyzer | public BrazilianAnalyzer(String[] stopwords)(Code) | | Builds an analyzer with the given stop words.
|
BrazilianAnalyzer | public BrazilianAnalyzer(Hashtable stopwords)(Code) | | Builds an analyzer with the given stop words.
|
BrazilianAnalyzer | public BrazilianAnalyzer(File stopwords) throws IOException(Code) | | Builds an analyzer with the given stop words.
|
setStemExclusionTable | public void setStemExclusionTable(String[] exclusionlist)(Code) | | Builds an exclusionlist from an array of Strings.
|
setStemExclusionTable | public void setStemExclusionTable(Hashtable exclusionlist)(Code) | | Builds an exclusionlist from a Hashtable.
|
setStemExclusionTable | public void setStemExclusionTable(File exclusionlist) throws IOException(Code) | | Builds an exclusionlist from the words contained in the given file.
|
tokenStream | final public TokenStream tokenStream(String fieldName, Reader reader)(Code) | | Creates a TokenStream which tokenizes all the text in the provided Reader.
A TokenStream build from a StandardTokenizer filtered withStandardFilter, StopFilter, GermanStemFilter and LowerCaseFilter. |
|
|
|