Uses of Class
org.apache.lucene.analysis.CharArraySet
Packages that use CharArraySet
Package
Description
Text analysis.
Analyzer for Arabic.
Analyzer for Bulgarian.
Analyzer for Bengali Language.
Analyzer for Brazilian Portuguese.
Analyzer for Catalan.
Normalization of text before the tokenizer.
Analyzer for Chinese, Japanese, and Korean, which indexes bigrams.
Analyzer for Sorani Kurdish.
Fast, general-purpose grammar-based tokenizers.
Analyzer for Simplified Chinese, which indexes words.
Construct n-grams for frequently occurring terms and phrases.
A filter that decomposes compound words you find in many Germanic languages into the word parts.
Basic, general-purpose analysis components.
Analyzer for Czech.
Analyzer for Danish.
Analyzer for German.
Analyzer for Greek.
Fast, general-purpose URLs and email addresses tokenizers.
Analyzer for English.
Analyzer for Spanish.
Analyzer for Estonian.
Analyzer for Basque.
Analyzer for Persian.
Analyzer for Finnish.
Analyzer for French.
Analyzer for Irish.
Analyzer for Galician.
Analyzer for Hindi.
Analyzer for Hungarian.
Analyzer for Armenian.
Analyzer for Indonesian.
Analyzer for Italian.
Analyzer for Japanese.
Analyzer for Lithuanian.
Analyzer for Latvian.
Miscellaneous Tokenstreams.
Analyzer for Nepali.
Analyzer for Dutch.
Analyzer for Norwegian.
Analyzer for Polish.
Analyzer for Portuguese.
Analyzer for Romanian.
Analyzer for Russian.
Analyzer for Serbian.
Fast, general-purpose grammar-based tokenizer
StandardTokenizer
implements the Word Break rules from the
Unicode Text Segmentation algorithm, as specified in Unicode Standard Annex #29.Analyzer for Swedish.
Analyzer for Tamil.
Analyzer for Telugu Language.
Analyzer for Thai.
Analyzer for Turkish.
Utility functions for text analysis.
Monitoring framework
Analyzer based autosuggest.
Support for document suggestion
-
Uses of CharArraySet in org.apache.lucene.analysis
Fields in org.apache.lucene.analysis declared as CharArraySetModifier and TypeFieldDescriptionstatic final CharArraySet
CharArraySet.EMPTY_SET
An emptyCharArraySet
.private CharArraySet
CharArrayMap.keySet
protected final CharArraySet
StopwordAnalyzerBase.stopwords
An immutable stopword setprivate final CharArraySet
StopFilter.stopWords
Methods in org.apache.lucene.analysis that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
Returns a copy of the given set as aCharArraySet
.protected final CharArraySet
AbstractAnalysisFactory.getSnowballWordSet
(ResourceLoader loader, String wordFiles, boolean ignoreCase) same asAbstractAnalysisFactory.getWordSet(ResourceLoader, String, boolean)
, except the input is in snowball format.static CharArraySet
WordlistLoader.getSnowballWordSet
(InputStream stream) Reads stopwords from a stopword list in Snowball format.static CharArraySet
WordlistLoader.getSnowballWordSet
(InputStream stream, Charset charset) Reads stopwords from a stopword list in Snowball format.static CharArraySet
WordlistLoader.getSnowballWordSet
(Reader reader) Reads stopwords from a stopword list in Snowball format.static CharArraySet
WordlistLoader.getSnowballWordSet
(Reader reader, CharArraySet result) Reads stopwords from a stopword list in Snowball format.StopwordAnalyzerBase.getStopwordSet()
Returns the analyzer's stopword set or an empty set if the analyzer has no stopwordsprotected final CharArraySet
AbstractAnalysisFactory.getWordSet
(ResourceLoader loader, String wordFiles, boolean ignoreCase) Returns asCharArraySet
from wordFiles, which can be a comma-separated list of filenamesstatic CharArraySet
WordlistLoader.getWordSet
(InputStream stream) Reads lines from an InputStream with UTF-8 charset and adds every line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(InputStream stream, String comment) Reads lines from an InputStream with UTF-8 charset and adds every non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(InputStream stream, Charset charset) Reads lines from an InputStream with the given charset and adds every line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(InputStream stream, Charset charset, String comment) Reads lines from an InputStream with the given charset and adds every non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(Reader reader) Reads lines from a Reader and adds every line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(Reader reader, String comment) Reads lines from a Reader and adds every non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(Reader reader, String comment, CharArraySet result) Reads lines from a Reader and adds every non-blank non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(Reader reader, CharArraySet result) Reads lines from a Reader and adds every non-blank line as an entry to a CharArraySet (omitting leading and trailing whitespace).final CharArraySet
CharArrayMap.keySet()
Returns anCharArraySet
view on the map's keys.protected static CharArraySet
StopwordAnalyzerBase.loadStopwordSet
(Reader stopwords) Creates a CharArraySet from a file.protected static CharArraySet
StopwordAnalyzerBase.loadStopwordSet
(Path stopwords) Creates a CharArraySet from a path.static CharArraySet
StopFilter.makeStopSet
(String... stopWords) Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySet
StopFilter.makeStopSet
(String[] stopWords, boolean ignoreCase) Creates a stopword set from the given stopword array.static CharArraySet
StopFilter.makeStopSet
(List<?> stopWords) Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySet
StopFilter.makeStopSet
(List<?> stopWords, boolean ignoreCase) Creates a stopword set from the given stopword list.static CharArraySet
CharArraySet.unmodifiableSet
(CharArraySet set) Returns an unmodifiableCharArraySet
.Methods in org.apache.lucene.analysis with parameters of type CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
WordlistLoader.getSnowballWordSet
(Reader reader, CharArraySet result) Reads stopwords from a stopword list in Snowball format.static CharArraySet
WordlistLoader.getWordSet
(Reader reader, String comment, CharArraySet result) Reads lines from a Reader and adds every non-blank non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
WordlistLoader.getWordSet
(Reader reader, CharArraySet result) Reads lines from a Reader and adds every non-blank line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySet
CharArraySet.unmodifiableSet
(CharArraySet set) Returns an unmodifiableCharArraySet
.Constructors in org.apache.lucene.analysis with parameters of type CharArraySetModifierConstructorDescriptionStopFilter
(TokenStream in, CharArraySet stopWords) Constructs a filter which removes words from the input TokenStream that are named in the Set.protected
StopwordAnalyzerBase
(CharArraySet stopwords) Creates a new instance initialized with the given stopword set -
Uses of CharArraySet in org.apache.lucene.analysis.ar
Fields in org.apache.lucene.analysis.ar declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
ArabicAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
ArabicAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ar that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
ArabicAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.ar with parameters of type CharArraySetModifierConstructorDescriptionArabicAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsArabicAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop word. -
Uses of CharArraySet in org.apache.lucene.analysis.bg
Fields in org.apache.lucene.analysis.bg declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
BulgarianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
BulgarianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.bg that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
BulgarianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.bg with parameters of type CharArraySetModifierConstructorDescriptionBulgarianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.BulgarianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words and a stem exclusion set. -
Uses of CharArraySet in org.apache.lucene.analysis.bn
Fields in org.apache.lucene.analysis.bn declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
BengaliAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
BengaliAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.bn that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
BengaliAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.bn with parameters of type CharArraySetModifierConstructorDescriptionBengaliAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsBengaliAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.br
Fields in org.apache.lucene.analysis.br declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
BrazilianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private CharArraySet
BrazilianAnalyzer.excltable
Contains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.br that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
BrazilianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.br with parameters of type CharArraySetModifierConstructorDescriptionBrazilianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsBrazilianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words and stemming exclusion words -
Uses of CharArraySet in org.apache.lucene.analysis.ca
Fields in org.apache.lucene.analysis.ca declared as CharArraySetModifier and TypeFieldDescriptionprivate static final CharArraySet
CatalanAnalyzer.DEFAULT_ARTICLES
(package private) static final CharArraySet
CatalanAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
CatalanAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ca that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
CatalanAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ca with parameters of type CharArraySetModifierConstructorDescriptionCatalanAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.CatalanAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.charfilter
Fields in org.apache.lucene.analysis.charfilter declared as CharArraySet -
Uses of CharArraySet in org.apache.lucene.analysis.cjk
Fields in org.apache.lucene.analysis.cjk declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
CJKAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
Methods in org.apache.lucene.analysis.cjk that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
CJKAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.cjk with parameters of type CharArraySetModifierConstructorDescriptionCJKAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.ckb
Fields in org.apache.lucene.analysis.ckb declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
SoraniAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
SoraniAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ckb that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
SoraniAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ckb with parameters of type CharArraySetModifierConstructorDescriptionSoraniAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.SoraniAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.classic
Fields in org.apache.lucene.analysis.classic declared as CharArraySetModifier and TypeFieldDescriptionstatic final CharArraySet
ClassicAnalyzer.STOP_WORDS_SET
An unmodifiable set containing some common English words that are usually not useful for searching.Constructors in org.apache.lucene.analysis.classic with parameters of type CharArraySetModifierConstructorDescriptionClassicAnalyzer
(CharArraySet stopWords) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.cn.smart
Fields in org.apache.lucene.analysis.cn.smart declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
SmartChineseAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
SmartChineseAnalyzer.stopWords
Methods in org.apache.lucene.analysis.cn.smart that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
SmartChineseAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.(package private) static CharArraySet
SmartChineseAnalyzer.DefaultSetHolder.loadDefaultStopWordSet()
Constructors in org.apache.lucene.analysis.cn.smart with parameters of type CharArraySetModifierConstructorDescriptionSmartChineseAnalyzer
(CharArraySet stopWords) Create a new SmartChineseAnalyzer, using the providedSet
of stopwords. -
Uses of CharArraySet in org.apache.lucene.analysis.commongrams
Fields in org.apache.lucene.analysis.commongrams declared as CharArraySetMethods in org.apache.lucene.analysis.commongrams that return CharArraySetModifier and TypeMethodDescriptionprotected CharArraySet
CommonGramsFilterFactory.createDefaultWords()
CommonGramsFilterFactory.getCommonWords()
Constructors in org.apache.lucene.analysis.commongrams with parameters of type CharArraySetModifierConstructorDescriptionCommonGramsFilter
(TokenStream input, CharArraySet commonWords) Construct a token stream filtering the given input using a Set of common words to create bigrams. -
Uses of CharArraySet in org.apache.lucene.analysis.compound
Fields in org.apache.lucene.analysis.compound declared as CharArraySetModifier and TypeFieldDescriptionprotected final CharArraySet
CompoundWordTokenFilterBase.dictionary
private CharArraySet
DictionaryCompoundWordTokenFilterFactory.dictionary
private CharArraySet
HyphenationCompoundWordTokenFilterFactory.dictionary
Constructors in org.apache.lucene.analysis.compound with parameters of type CharArraySetModifierConstructorDescriptionprotected
CompoundWordTokenFilterBase
(TokenStream input, CharArraySet dictionary) protected
CompoundWordTokenFilterBase
(TokenStream input, CharArraySet dictionary, boolean onlyLongestMatch) protected
CompoundWordTokenFilterBase
(TokenStream input, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch) DictionaryCompoundWordTokenFilter
(TokenStream input, CharArraySet dictionary) Creates a newDictionaryCompoundWordTokenFilter
DictionaryCompoundWordTokenFilter
(TokenStream input, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch) Creates a newDictionaryCompoundWordTokenFilter
HyphenationCompoundWordTokenFilter
(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary) Creates a newHyphenationCompoundWordTokenFilter
instance.HyphenationCompoundWordTokenFilter
(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch) Creates a newHyphenationCompoundWordTokenFilter
instance.HyphenationCompoundWordTokenFilter
(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch, boolean noSubMatches, boolean noOverlappingMatches) Creates a newHyphenationCompoundWordTokenFilter
instance. -
Uses of CharArraySet in org.apache.lucene.analysis.core
Methods in org.apache.lucene.analysis.core that return CharArraySetModifier and TypeMethodDescriptionprotected CharArraySet
StopFilterFactory.createDefaultWords()
StopFilterFactory.getStopWords()
Constructors in org.apache.lucene.analysis.core with parameters of type CharArraySetModifierConstructorDescriptionStopAnalyzer
(CharArraySet stopWords) Builds an analyzer with the stop words from the given set.StopFilter
(TokenStream in, CharArraySet stopWords) Constructs a filter which removes words from the input TokenStream that are named in the Set. -
Uses of CharArraySet in org.apache.lucene.analysis.cz
Fields in org.apache.lucene.analysis.cz declared as CharArraySetModifier and TypeFieldDescriptionprivate static final CharArraySet
CzechAnalyzer.DefaultSetHolder.DEFAULT_SET
private final CharArraySet
CzechAnalyzer.stemExclusionTable
Methods in org.apache.lucene.analysis.cz that return CharArraySetModifier and TypeMethodDescriptionstatic final CharArraySet
CzechAnalyzer.getDefaultStopSet()
Returns a set of default Czech-stopwordsConstructors in org.apache.lucene.analysis.cz with parameters of type CharArraySetModifierConstructorDescriptionCzechAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.CzechAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionTable) Builds an analyzer with the given stop words and a set of work to be excluded from theCzechStemFilter
. -
Uses of CharArraySet in org.apache.lucene.analysis.da
Fields in org.apache.lucene.analysis.da declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
DanishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
DanishAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.da that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
DanishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.da with parameters of type CharArraySetModifierConstructorDescriptionDanishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.DanishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.de
Fields in org.apache.lucene.analysis.de declared as CharArraySetModifier and TypeFieldDescriptionprivate static final CharArraySet
GermanAnalyzer.DefaultSetHolder.DEFAULT_SET
private final CharArraySet
GermanAnalyzer.exclusionSet
Contains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.de that return CharArraySetModifier and TypeMethodDescriptionstatic final CharArraySet
GermanAnalyzer.getDefaultStopSet()
Returns a set of default German-stopwordsConstructors in org.apache.lucene.analysis.de with parameters of type CharArraySetModifierConstructorDescriptionGermanAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsGermanAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.el
Fields in org.apache.lucene.analysis.el declared as CharArraySetModifier and TypeFieldDescriptionprivate static final CharArraySet
GreekAnalyzer.DefaultSetHolder.DEFAULT_SET
private static final CharArraySet
GreekStemmer.exc12a
private static final CharArraySet
GreekStemmer.exc12b
private static final CharArraySet
GreekStemmer.exc13
private static final CharArraySet
GreekStemmer.exc14
private static final CharArraySet
GreekStemmer.exc15a
private static final CharArraySet
GreekStemmer.exc15b
private static final CharArraySet
GreekStemmer.exc16
private static final CharArraySet
GreekStemmer.exc17
private static final CharArraySet
GreekStemmer.exc18
private static final CharArraySet
GreekStemmer.exc19
private static final CharArraySet
GreekStemmer.exc4
private static final CharArraySet
GreekStemmer.exc6
private static final CharArraySet
GreekStemmer.exc7
private static final CharArraySet
GreekStemmer.exc8a
private static final CharArraySet
GreekStemmer.exc8b
private static final CharArraySet
GreekStemmer.exc9
Methods in org.apache.lucene.analysis.el that return CharArraySetModifier and TypeMethodDescriptionstatic final CharArraySet
GreekAnalyzer.getDefaultStopSet()
Returns a set of default Greek-stopwordsConstructors in org.apache.lucene.analysis.el with parameters of type CharArraySetModifierConstructorDescriptionGreekAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.email
Fields in org.apache.lucene.analysis.email declared as CharArraySetModifier and TypeFieldDescriptionstatic final CharArraySet
UAX29URLEmailAnalyzer.STOP_WORDS_SET
An unmodifiable set containing some common English words that are usually not useful for searching.Constructors in org.apache.lucene.analysis.email with parameters of type CharArraySetModifierConstructorDescriptionUAX29URLEmailAnalyzer
(CharArraySet stopWords) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.en
Fields in org.apache.lucene.analysis.en declared as CharArraySetModifier and TypeFieldDescriptionstatic final CharArraySet
EnglishAnalyzer.ENGLISH_STOP_WORDS_SET
An unmodifiable set containing some common English words that are not usually useful for searching.private final CharArraySet
EnglishAnalyzer.stemExclusionSet
private CharArraySet
AbstractWordsFileFilterFactory.words
Methods in org.apache.lucene.analysis.en that return CharArraySetModifier and TypeMethodDescriptionprotected abstract CharArraySet
AbstractWordsFileFilterFactory.createDefaultWords()
Default word set implementation.static CharArraySet
EnglishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.AbstractWordsFileFilterFactory.getWords()
Constructors in org.apache.lucene.analysis.en with parameters of type CharArraySetModifierConstructorDescriptionEnglishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.EnglishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.es
Fields in org.apache.lucene.analysis.es declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
SpanishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private static final CharArraySet
SpanishPluralStemmer.invariants
private static final CharArraySet
SpanishPluralStemmer.specialCases
private final CharArraySet
SpanishAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.es that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
SpanishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.es with parameters of type CharArraySetModifierConstructorDescriptionSpanishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.SpanishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.et
Fields in org.apache.lucene.analysis.et declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
EstonianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
EstonianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.et that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
EstonianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.et with parameters of type CharArraySetModifierConstructorDescriptionEstonianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.EstonianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.eu
Fields in org.apache.lucene.analysis.eu declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
BasqueAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
BasqueAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.eu that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
BasqueAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.eu with parameters of type CharArraySetModifierConstructorDescriptionBasqueAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.BasqueAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.fa
Fields in org.apache.lucene.analysis.fa declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
PersianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
PersianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.fa that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
PersianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.fa with parameters of type CharArraySetModifierConstructorDescriptionPersianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsPersianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop word. -
Uses of CharArraySet in org.apache.lucene.analysis.fi
Fields in org.apache.lucene.analysis.fi declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
FinnishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
FinnishAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.fi that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
FinnishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.fi with parameters of type CharArraySetModifierConstructorDescriptionFinnishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.FinnishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.fr
Fields in org.apache.lucene.analysis.fr declared as CharArraySetModifier and TypeFieldDescriptionstatic final CharArraySet
FrenchAnalyzer.DEFAULT_ARTICLES
Default set of articles for ElisionFilter(package private) static final CharArraySet
FrenchAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
FrenchAnalyzer.excltable
Contains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.fr that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
FrenchAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.fr with parameters of type CharArraySetModifierConstructorDescriptionFrenchAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsFrenchAnalyzer
(CharArraySet stopwords, CharArraySet stemExclutionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.ga
Fields in org.apache.lucene.analysis.ga declared as CharArraySetModifier and TypeFieldDescriptionprivate static final CharArraySet
IrishAnalyzer.DEFAULT_ARTICLES
(package private) static final CharArraySet
IrishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private static final CharArraySet
IrishAnalyzer.HYPHENATIONS
When StandardTokenizer splits t‑athair into {t, athair}, we don't want to cause a position increment, otherwise there will be problems with phrase queries versus tAthair (which would not have a gap).private final CharArraySet
IrishAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ga that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
IrishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ga with parameters of type CharArraySetModifierConstructorDescriptionIrishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.IrishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.gl
Fields in org.apache.lucene.analysis.gl declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
GalicianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
GalicianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.gl that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
GalicianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.gl with parameters of type CharArraySetModifierConstructorDescriptionGalicianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.GalicianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.hi
Fields in org.apache.lucene.analysis.hi declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
HindiAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
HindiAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.hi that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
HindiAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.hi with parameters of type CharArraySetModifierConstructorDescriptionHindiAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsHindiAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.hu
Fields in org.apache.lucene.analysis.hu declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
HungarianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
HungarianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.hu that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
HungarianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.hu with parameters of type CharArraySetModifierConstructorDescriptionHungarianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.HungarianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.hy
Fields in org.apache.lucene.analysis.hy declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
ArmenianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
ArmenianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.hy that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
ArmenianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.hy with parameters of type CharArraySetModifierConstructorDescriptionArmenianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.ArmenianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.id
Fields in org.apache.lucene.analysis.id declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
IndonesianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
IndonesianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.id that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
IndonesianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.id with parameters of type CharArraySetModifierConstructorDescriptionIndonesianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsIndonesianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop word. -
Uses of CharArraySet in org.apache.lucene.analysis.it
Fields in org.apache.lucene.analysis.it declared as CharArraySetModifier and TypeFieldDescriptionprivate static final CharArraySet
ItalianAnalyzer.DEFAULT_ARTICLES
(package private) static final CharArraySet
ItalianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
ItalianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.it that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
ItalianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.it with parameters of type CharArraySetModifierConstructorDescriptionItalianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.ItalianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.ja
Fields in org.apache.lucene.analysis.ja declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
JapaneseAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
Methods in org.apache.lucene.analysis.ja that return CharArraySetConstructors in org.apache.lucene.analysis.ja with parameters of type CharArraySetModifierConstructorDescriptionJapaneseAnalyzer
(UserDictionary userDict, JapaneseTokenizer.Mode mode, CharArraySet stopwords, Set<String> stoptags) -
Uses of CharArraySet in org.apache.lucene.analysis.lt
Fields in org.apache.lucene.analysis.lt declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
LithuanianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
LithuanianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.lt that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
LithuanianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.lt with parameters of type CharArraySetModifierConstructorDescriptionLithuanianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.LithuanianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.lv
Fields in org.apache.lucene.analysis.lv declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
LatvianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
LatvianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.lv that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
LatvianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.lv with parameters of type CharArraySetModifierConstructorDescriptionLatvianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.LatvianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.miscellaneous
Fields in org.apache.lucene.analysis.miscellaneous declared as CharArraySetModifier and TypeFieldDescriptionprivate final CharArraySet
CapitalizationFilter.keep
(package private) CharArraySet
CapitalizationFilterFactory.keep
private final CharArraySet
SetKeywordMarkerFilter.keywordSet
private final CharArraySet
RemoveDuplicatesTokenFilter.previous
private final CharArraySet
ProtectedTermFilter.protectedTerms
private CharArraySet
ProtectedTermFilterFactory.protectedTerms
private CharArraySet
KeywordMarkerFilterFactory.protectedWords
private CharArraySet
WordDelimiterFilterFactory.protectedWords
Deprecated.private CharArraySet
WordDelimiterGraphFilterFactory.protectedWords
(package private) final CharArraySet
WordDelimiterFilter.protWords
Deprecated.If not null is the set of tokens to protect from being delimited(package private) final CharArraySet
WordDelimiterGraphFilter.protWords
If not null is the set of tokens to protect from being delimitedprivate CharArraySet
FingerprintFilter.uniqueTerms
private final CharArraySet
KeepWordFilter.words
Methods in org.apache.lucene.analysis.miscellaneous that return CharArraySetModifier and TypeMethodDescriptionprotected CharArraySet
KeepWordFilterFactory.createDefaultWords()
ProtectedTermFilterFactory.getProtectedTerms()
Constructors in org.apache.lucene.analysis.miscellaneous with parameters of type CharArraySetModifierConstructorDescriptionCapitalizationFilter
(TokenStream in, boolean onlyFirstWord, CharArraySet keep, boolean forceFirstLetter, Collection<char[]> okPrefix, int minWordLength, int maxWordCount, int maxTokenLength) Creates a CapitalizationFilter with the specified parameters.KeepWordFilter
(TokenStream in, CharArraySet words) Create a newKeepWordFilter
.ProtectedTermFilter
(CharArraySet protectedTerms, TokenStream input, Function<TokenStream, TokenStream> inputFactory) Creates a new ProtectedTermFilterSetKeywordMarkerFilter
(TokenStream in, CharArraySet keywordSet) Create a new KeywordSetMarkerFilter, that marks the current token as a keyword if the tokens term buffer is contained in the given set via theKeywordAttribute
.WordDelimiterFilter
(TokenStream in, byte[] charTypeTable, int configurationFlags, CharArraySet protWords) Deprecated.Creates a new WordDelimiterFilterWordDelimiterFilter
(TokenStream in, int configurationFlags, CharArraySet protWords) Deprecated.Creates a new WordDelimiterFilter usingWordDelimiterIterator.DEFAULT_WORD_DELIM_TABLE
as its charTypeTableWordDelimiterGraphFilter
(TokenStream in, boolean adjustInternalOffsets, byte[] charTypeTable, int configurationFlags, CharArraySet protWords) Creates a new WordDelimiterGraphFilterWordDelimiterGraphFilter
(TokenStream in, int configurationFlags, CharArraySet protWords) Creates a new WordDelimiterGraphFilter usingWordDelimiterIterator.DEFAULT_WORD_DELIM_TABLE
as its charTypeTable -
Uses of CharArraySet in org.apache.lucene.analysis.ne
Fields in org.apache.lucene.analysis.ne declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
NepaliAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
NepaliAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ne that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
NepaliAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.ne with parameters of type CharArraySetModifierConstructorDescriptionNepaliAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsNepaliAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.nl
Fields in org.apache.lucene.analysis.nl declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
DutchAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
DutchAnalyzer.excltable
Contains words that should be indexed but not stemmed.private final CharArraySet
DutchAnalyzer.stoptable
Contains the stopwords used with the StopFilter.Methods in org.apache.lucene.analysis.nl that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
DutchAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.nl with parameters of type CharArraySetModifierConstructorDescriptionDutchAnalyzer
(CharArraySet stopwords) DutchAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionTable) DutchAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionTable, CharArrayMap<String> stemOverrideDict) -
Uses of CharArraySet in org.apache.lucene.analysis.no
Fields in org.apache.lucene.analysis.no declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
NorwegianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
NorwegianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.no that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
NorwegianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.no with parameters of type CharArraySetModifierConstructorDescriptionNorwegianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.NorwegianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.pl
Fields in org.apache.lucene.analysis.pl declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
PolishAnalyzer.DefaultsHolder.DEFAULT_STOP_SET
private final CharArraySet
PolishAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.pl that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
PolishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.pl with parameters of type CharArraySetModifierConstructorDescriptionPolishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.PolishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.pt
Fields in org.apache.lucene.analysis.pt declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
PortugueseAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
protected final CharArraySet
RSLPStemmerBase.RuleWithSetExceptions.exceptions
private final CharArraySet
PortugueseAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.pt that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
PortugueseAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.pt with parameters of type CharArraySetModifierConstructorDescriptionPortugueseAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.PortugueseAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.ro
Fields in org.apache.lucene.analysis.ro declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
RomanianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
RomanianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ro that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
RomanianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ro with parameters of type CharArraySetModifierConstructorDescriptionRomanianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.RomanianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.ru
Fields in org.apache.lucene.analysis.ru declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
RussianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
RussianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ru that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
RussianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.ru with parameters of type CharArraySetModifierConstructorDescriptionRussianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsRussianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.snowball
Fields in org.apache.lucene.analysis.snowball declared as CharArraySet -
Uses of CharArraySet in org.apache.lucene.analysis.sr
Fields in org.apache.lucene.analysis.sr declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
SerbianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
SerbianAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.sr that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
SerbianAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.sr with parameters of type CharArraySetModifierConstructorDescriptionSerbianAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.SerbianAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.standard
Constructors in org.apache.lucene.analysis.standard with parameters of type CharArraySetModifierConstructorDescriptionStandardAnalyzer
(CharArraySet stopWords) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.sv
Fields in org.apache.lucene.analysis.sv declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
SwedishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
SwedishAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.sv that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
SwedishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.sv with parameters of type CharArraySetModifierConstructorDescriptionSwedishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.SwedishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.ta
Fields in org.apache.lucene.analysis.ta declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
TamilAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
TamilAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.ta that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
TamilAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.ta with parameters of type CharArraySetModifierConstructorDescriptionTamilAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsTamilAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.te
Fields in org.apache.lucene.analysis.te declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
TeluguAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
TeluguAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.te that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
TeluguAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.te with parameters of type CharArraySetModifierConstructorDescriptionTeluguAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop wordsTeluguAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words -
Uses of CharArraySet in org.apache.lucene.analysis.th
Fields in org.apache.lucene.analysis.th declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
ThaiAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
Methods in org.apache.lucene.analysis.th that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
ThaiAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.th with parameters of type CharArraySetModifierConstructorDescriptionThaiAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.tr
Fields in org.apache.lucene.analysis.tr declared as CharArraySetModifier and TypeFieldDescription(package private) static final CharArraySet
TurkishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SET
private final CharArraySet
TurkishAnalyzer.stemExclusionSet
Methods in org.apache.lucene.analysis.tr that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySet
TurkishAnalyzer.getDefaultStopSet()
Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.tr with parameters of type CharArraySetModifierConstructorDescriptionTurkishAnalyzer
(CharArraySet stopwords) Builds an analyzer with the given stop words.TurkishAnalyzer
(CharArraySet stopwords, CharArraySet stemExclusionSet) Builds an analyzer with the given stop words. -
Uses of CharArraySet in org.apache.lucene.analysis.util
Fields in org.apache.lucene.analysis.util declared as CharArraySetModifier and TypeFieldDescriptionprivate final CharArraySet
ElisionFilter.articles
private CharArraySet
ElisionFilterFactory.articles
Constructors in org.apache.lucene.analysis.util with parameters of type CharArraySetModifierConstructorDescriptionElisionFilter
(TokenStream input, CharArraySet articles) Constructs an elision filter with a Set of stop words -
Uses of CharArraySet in org.apache.lucene.monitor
Fields in org.apache.lucene.monitor declared as CharArraySetModifier and TypeFieldDescriptionprivate final CharArraySet
SuffixingNGramTokenFilter.seenInfixes
private final CharArraySet
SuffixingNGramTokenFilter.seenSuffixes
-
Uses of CharArraySet in org.apache.lucene.search.suggest.analyzing
Fields in org.apache.lucene.search.suggest.analyzing declared as CharArraySetModifier and TypeFieldDescriptionprivate final CharArraySet
SuggestStopFilter.stopWords
private CharArraySet
SuggestStopFilterFactory.stopWords
Methods in org.apache.lucene.search.suggest.analyzing that return CharArraySetModifier and TypeMethodDescriptionSuggestStopFilterFactory.getStopWords()
Returns the configured stopword setConstructors in org.apache.lucene.search.suggest.analyzing with parameters of type CharArraySetModifierConstructorDescriptionSuggestStopFilter
(TokenStream input, CharArraySet stopWords) Sole constructor. -
Uses of CharArraySet in org.apache.lucene.search.suggest.document
Fields in org.apache.lucene.search.suggest.document declared as CharArraySetModifier and TypeFieldDescription(package private) final CharArraySet
TopSuggestDocsCollector.seenSurfaceForms
Only set if we are deduplicating hits: holds all surface forms seen so far in the current segment