org.apache.lucene.analysis.standard
Class StandardAnalyzer
public class StandardAnalyzer
$Id: StandardAnalyzer.java 219090 2005-07-14 20:36:28Z dnaber $static String[] | STOP_WORDS - An array containing some common English words that are usually not
useful for searching.
|
STOP_WORDS
public static final String[] STOP_WORDS
An array containing some common English words that are usually not
useful for searching.
StandardAnalyzer
public StandardAnalyzer()
Builds an analyzer with the default stop words (
STOP_WORDS
).
StandardAnalyzer
public StandardAnalyzer(File stopwords)
throws IOException
Builds an analyzer with the stop words from the given file.
StandardAnalyzer
public StandardAnalyzer(Reader stopwords)
throws IOException
Builds an analyzer with the stop words from the given reader.
StandardAnalyzer
public StandardAnalyzer(Set stopWords)
Builds an analyzer with the given stop words.
StandardAnalyzer
public StandardAnalyzer(String[] stopWords)
Builds an analyzer with the given stop words.
Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.