Uses of Class
org.apache.lucene.analysis.TokenFilter
-
-
Uses of TokenFilter in org.apache.lucene.analysis
Subclasses of TokenFilter in org.apache.lucene.analysis Modifier and Type Class Description classCachingTokenFilterThis class can be used if the token attributes of a TokenStream are intended to be consumed more than once.classFilteringTokenFilterAbstract base class for TokenFilters that may remove tokens.classGraphTokenFilterAn abstract TokenFilter that exposes its input stream as a graph CallGraphTokenFilter.incrementBaseToken()to move the root of the graph to the next position in the TokenStream,GraphTokenFilter.incrementGraphToken()to move along the current graph, andGraphTokenFilter.incrementGraph()to reset to the next graph based at the current root.classLowerCaseFilterNormalizes token text to lower case.classStopFilterRemoves stop words from a token stream. -
Uses of TokenFilter in org.apache.lucene.analysis.core
Subclasses of TokenFilter in org.apache.lucene.analysis.core Modifier and Type Class Description classFlattenGraphFilterConverts an incoming graph token stream, such as one fromSynonymGraphFilter, into a flat form so that all nodes form a single linear chain with no side paths. -
Uses of TokenFilter in org.apache.lucene.analysis.en
Subclasses of TokenFilter in org.apache.lucene.analysis.en Modifier and Type Class Description classEnglishPossessiveFilterTokenFilter that removes possessives (trailing 's) from words.classPorterStemFilterTransforms the token stream as per the Porter stemming algorithm. -
Uses of TokenFilter in org.apache.lucene.analysis.hunspell
Subclasses of TokenFilter in org.apache.lucene.analysis.hunspell Modifier and Type Class Description classHunspellStemFilterTokenFilter that uses hunspell affix rules and words to stem tokens. -
Uses of TokenFilter in org.apache.lucene.analysis.miscellaneous
Subclasses of TokenFilter in org.apache.lucene.analysis.miscellaneous Modifier and Type Class Description classDeDuplicatingTokenFilterInspects token streams for duplicate sequences of tokens.classKeywordMarkerFilterMarks terms as keywords via theKeywordAttribute.classSetKeywordMarkerFilterMarks terms as keywords via theKeywordAttribute. -
Uses of TokenFilter in org.apache.lucene.analysis.ngram
Subclasses of TokenFilter in org.apache.lucene.analysis.ngram Modifier and Type Class Description classEdgeNGramTokenFilterTokenizes the given token into n-grams of given size(s). -
Uses of TokenFilter in org.apache.lucene.analysis.shingle
Subclasses of TokenFilter in org.apache.lucene.analysis.shingle Modifier and Type Class Description classFixedShingleFilterA FixedShingleFilter constructs shingles (token n-grams) from a token stream.classShingleFilterA ShingleFilter constructs shingles (token n-grams) from a token stream. -
Uses of TokenFilter in org.apache.lucene.analysis.standard
Subclasses of TokenFilter in org.apache.lucene.analysis.standard Modifier and Type Class Description classClassicFilterNormalizes tokens extracted withClassicTokenizer. -
Uses of TokenFilter in org.apache.lucene.analysis.synonym
Subclasses of TokenFilter in org.apache.lucene.analysis.synonym Modifier and Type Class Description classSynonymFilterDeprecated.UseSynonymGraphFilterinstead, but be sure to also useFlattenGraphFilterat index time (not at search time) as well.classSynonymGraphFilterApplies single- or multi-token synonyms from aSynonymMapto an incomingTokenStream, producing a fully correct graph output. -
Uses of TokenFilter in org.apache.lucene.search.highlight
Subclasses of TokenFilter in org.apache.lucene.search.highlight Modifier and Type Class Description classOffsetLimitTokenFilterThis TokenFilter limits the number of tokens while indexing by adding up the current offset. -
Uses of TokenFilter in org.apache.lucene.search.suggest.analyzing
Subclasses of TokenFilter in org.apache.lucene.search.suggest.analyzing Modifier and Type Class Description classSuggestStopFilterLikeStopFilterexcept it will not remove the last token if that token was not followed by some token separator. -
Uses of TokenFilter in org.apache.lucene.search.suggest.document
Subclasses of TokenFilter in org.apache.lucene.search.suggest.document Modifier and Type Class Description classCompletionTokenStreamAConcatenateGraphFilterbut we can set the payload and provide access to config options.
-