public class SimpleAnalyzer
extends org.apache.lucene.analysis.Analyzer
It is used instead of the Lucene SimpleAnalyzer because it indexes numbers as well as letters, and includes the SubtokenFilter.
SubtokenFilter| Constructor and Description |
|---|
SimpleAnalyzer(org.apache.lucene.util.Version matchVersion,
boolean indexing) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isIndexing() |
org.apache.lucene.analysis.TokenStream |
reusableTokenStream(String fieldName,
Reader reader) |
org.apache.lucene.analysis.TokenStream |
tokenStream(String fieldname,
Reader reader) |
protected org.apache.lucene.analysis.TokenStream |
wrapStreamForIndexing(org.apache.lucene.analysis.TokenStream input)
Applies a
SubtokenFilter to the input token stream at document indexing time. |
protected org.apache.lucene.analysis.TokenStream |
wrapStreamForWilcardSearchSupport(org.apache.lucene.analysis.TokenStream input)
Applies a
KeywordRepeatFilter to the input token stream at document indexing time to store the original
tokens as keywords before any stemming filter is applied and therefore support wildcard searches and exact phrase
queries on document fields. |
public SimpleAnalyzer(org.apache.lucene.util.Version matchVersion,
boolean indexing)
public final org.apache.lucene.analysis.TokenStream tokenStream(String fieldname, Reader reader)
tokenStream in class org.apache.lucene.analysis.Analyzerpublic boolean isIndexing()
protected org.apache.lucene.analysis.TokenStream wrapStreamForIndexing(org.apache.lucene.analysis.TokenStream input)
SubtokenFilter to the input token stream at document indexing time.input - token streamprotected org.apache.lucene.analysis.TokenStream wrapStreamForWilcardSearchSupport(org.apache.lucene.analysis.TokenStream input)
KeywordRepeatFilter to the input token stream at document indexing time to store the original
tokens as keywords before any stemming filter is applied and therefore support wildcard searches and exact phrase
queries on document fields.input - token streampublic final org.apache.lucene.analysis.TokenStream reusableTokenStream(String fieldName, Reader reader) throws IOException
reusableTokenStream in class org.apache.lucene.analysis.AnalyzerIOExceptionCopyright © 2002-2017 Atlassian. All Rights Reserved.