| java.lang.Object org.apache.lucene.analysis.Analyzer org.apache.lucene.analysis.standard.StandardAnalyzer
DEFAULT_MAX_TOKEN_LENGTH | final public static int DEFAULT_MAX_TOKEN_LENGTH(Code) | | Default maximum allowed token length
|
STOP_WORDS | final public static String[] STOP_WORDS(Code) | | An array containing some common English words that are usually not
useful for searching.
|
StandardAnalyzer | public StandardAnalyzer(Set stopWords)(Code) | | Builds an analyzer with the given stop words.
|
StandardAnalyzer | public StandardAnalyzer(String[] stopWords)(Code) | | Builds an analyzer with the given stop words.
|
StandardAnalyzer | public StandardAnalyzer(boolean replaceInvalidAcronym)(Code) | | Parameters: replaceInvalidAcronym - Set to true if this analyzer should replace mischaracterized acronyms in the StandardTokenizerSee https://issues.apache.org/jira/browse/LUCENE-1068 |
StandardAnalyzer | public StandardAnalyzer(Reader stopwords, boolean replaceInvalidAcronym) throws IOException(Code) | | Parameters: stopwords - The stopwords to use Parameters: replaceInvalidAcronym - Set to true if this analyzer should replace mischaracterized acronyms in the StandardTokenizerSee https://issues.apache.org/jira/browse/LUCENE-1068 |
StandardAnalyzer | public StandardAnalyzer(File stopwords, boolean replaceInvalidAcronym) throws IOException(Code) | | Parameters: stopwords - The stopwords to use Parameters: replaceInvalidAcronym - Set to true if this analyzer should replace mischaracterized acronyms in the StandardTokenizerSee https://issues.apache.org/jira/browse/LUCENE-1068 |
StandardAnalyzer | public StandardAnalyzer(String[] stopwords, boolean replaceInvalidAcronym) throws IOException(Code) | | Parameters: stopwords - The stopwords to use Parameters: replaceInvalidAcronym - Set to true if this analyzer should replace mischaracterized acronyms in the StandardTokenizerSee https://issues.apache.org/jira/browse/LUCENE-1068 |
StandardAnalyzer | public StandardAnalyzer(Set stopwords, boolean replaceInvalidAcronym) throws IOException(Code) | | Parameters: stopwords - The stopwords to use Parameters: replaceInvalidAcronym - Set to true if this analyzer should replace mischaracterized acronyms in the StandardTokenizerSee https://issues.apache.org/jira/browse/LUCENE-1068 |
isReplaceInvalidAcronym | public boolean isReplaceInvalidAcronym()(Code) | | true if this Analyzer is replacing mischaracterized acronyms in the StandardTokenizerSee https://issues.apache.org/jira/browse/LUCENE-1068 |
setMaxTokenLength | public void setMaxTokenLength(int length)(Code) | | Set maximum allowed token length. If a token is seen
that exceeds this length then it is discarded. This
setting only takes effect the next time tokenStream or
reusableTokenStream is called.
|
setReplaceInvalidAcronym | public void setReplaceInvalidAcronym(boolean replaceInvalidAcronym)(Code) | | Parameters: replaceInvalidAcronym - Set to true if this Analyzer is replacing mischaracterized acronyms in the StandardTokenizerSee https://issues.apache.org/jira/browse/LUCENE-1068 |
|
|