Uses of Class
org.apache.lucene.analysis.FilteringTokenFilter
-
Packages that use FilteringTokenFilter Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.analysis.core Basic, general-purpose analysis components.org.apache.lucene.analysis.ja Analyzer for Japanese.org.apache.lucene.analysis.ko Analyzer for Korean.org.apache.lucene.analysis.miscellaneous Miscellaneous Tokenstreams.org.apache.lucene.search.uhighlight The UnifiedHighlighter -- a flexible highlighter that can get offsets from postings, term vectors, or analysis. -
-
Uses of FilteringTokenFilter in org.apache.lucene.analysis
Subclasses of FilteringTokenFilter in org.apache.lucene.analysis Modifier and Type Class Description class
StopFilter
Removes stop words from a token stream. -
Uses of FilteringTokenFilter in org.apache.lucene.analysis.core
Subclasses of FilteringTokenFilter in org.apache.lucene.analysis.core Modifier and Type Class Description class
StopFilter
Removes stop words from a token stream.class
TypeTokenFilter
Removes tokens whose types appear in a set of blocked types from a token stream. -
Uses of FilteringTokenFilter in org.apache.lucene.analysis.ja
Subclasses of FilteringTokenFilter in org.apache.lucene.analysis.ja Modifier and Type Class Description class
JapanesePartOfSpeechStopFilter
Removes tokens that match a set of part-of-speech tags. -
Uses of FilteringTokenFilter in org.apache.lucene.analysis.ko
Subclasses of FilteringTokenFilter in org.apache.lucene.analysis.ko Modifier and Type Class Description class
KoreanPartOfSpeechStopFilter
Removes tokens that match a set of part-of-speech tags. -
Uses of FilteringTokenFilter in org.apache.lucene.analysis.miscellaneous
Subclasses of FilteringTokenFilter in org.apache.lucene.analysis.miscellaneous Modifier and Type Class Description class
CodepointCountFilter
Removes words that are too long or too short from the stream.class
DateRecognizerFilter
Filters all tokens that cannot be parsed to a date, using the providedDateFormat
.class
KeepWordFilter
A TokenFilter that only keeps tokens with text contained in the required words.class
LengthFilter
Removes words that are too long or too short from the stream. -
Uses of FilteringTokenFilter in org.apache.lucene.search.uhighlight
Methods in org.apache.lucene.search.uhighlight that return FilteringTokenFilter Modifier and Type Method Description private static FilteringTokenFilter
MemoryIndexOffsetStrategy. newKeepWordFilter(TokenStream tokenStream, CharArrayMatcher matcher)
-