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 classStopFilterRemoves 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 classStopFilterRemoves stop words from a token stream.classTypeTokenFilterRemoves 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 classJapanesePartOfSpeechStopFilterRemoves 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 classKoreanPartOfSpeechStopFilterRemoves 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 classCodepointCountFilterRemoves words that are too long or too short from the stream.classDateRecognizerFilterFilters all tokens that cannot be parsed to a date, using the providedDateFormat.classKeepWordFilterA TokenFilter that only keeps tokens with text contained in the required words.classLengthFilterRemoves 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 FilteringTokenFilterMemoryIndexOffsetStrategy. newKeepWordFilter(TokenStream tokenStream, CharArrayMatcher matcher)
-