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 CharArraySetCharArraySet.EMPTY_SETAn emptyCharArraySet.private CharArraySetCharArrayMap.keySetprotected final CharArraySetStopwordAnalyzerBase.stopwordsAn immutable stopword setprivate final CharArraySetStopFilter.stopWordsMethods in org.apache.lucene.analysis that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetReturns a copy of the given set as aCharArraySet.protected final CharArraySetAbstractAnalysisFactory.getSnowballWordSet(ResourceLoader loader, String wordFiles, boolean ignoreCase) same asAbstractAnalysisFactory.getWordSet(ResourceLoader, String, boolean), except the input is in snowball format.static CharArraySetWordlistLoader.getSnowballWordSet(InputStream stream) Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader.getSnowballWordSet(InputStream stream, Charset charset) Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader.getSnowballWordSet(Reader reader) Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader.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 CharArraySetAbstractAnalysisFactory.getWordSet(ResourceLoader loader, String wordFiles, boolean ignoreCase) Returns asCharArraySetfrom wordFiles, which can be a comma-separated list of filenamesstatic CharArraySetWordlistLoader.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 CharArraySetWordlistLoader.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 CharArraySetWordlistLoader.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 CharArraySetWordlistLoader.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 CharArraySetWordlistLoader.getWordSet(Reader reader) Reads lines from a Reader and adds every line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySetWordlistLoader.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 CharArraySetWordlistLoader.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 CharArraySetWordlistLoader.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 CharArraySetCharArrayMap.keySet()Returns anCharArraySetview on the map's keys.protected static CharArraySetStopwordAnalyzerBase.loadStopwordSet(boolean ignoreCase, Class<? extends Analyzer> aClass, String resource, String comment) Deprecated, for removal: This API element is subject to removal in a future version.protected static CharArraySetStopwordAnalyzerBase.loadStopwordSet(Reader stopwords) Creates a CharArraySet from a file.protected static CharArraySetStopwordAnalyzerBase.loadStopwordSet(Path stopwords) Creates a CharArraySet from a path.static CharArraySetStopFilter.makeStopSet(String... stopWords) Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySetStopFilter.makeStopSet(String[] stopWords, boolean ignoreCase) Creates a stopword set from the given stopword array.static CharArraySetStopFilter.makeStopSet(List<?> stopWords) Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySetStopFilter.makeStopSet(List<?> stopWords, boolean ignoreCase) Creates a stopword set from the given stopword list.static CharArraySetCharArraySet.unmodifiableSet(CharArraySet set) Returns an unmodifiableCharArraySet.Methods in org.apache.lucene.analysis with parameters of type CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetWordlistLoader.getSnowballWordSet(Reader reader, CharArraySet result) Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader.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 CharArraySetWordlistLoader.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 CharArraySetCharArraySet.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.protectedStopwordAnalyzerBase(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 CharArraySetArabicAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetArabicAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ar that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetArabicAnalyzer.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 CharArraySetBulgarianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetBulgarianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.bg that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetBulgarianAnalyzer.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 CharArraySetBengaliAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetBengaliAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.bn that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetBengaliAnalyzer.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 CharArraySetBrazilianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate CharArraySetBrazilianAnalyzer.excltableContains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.br that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetBrazilianAnalyzer.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 CharArraySetCatalanAnalyzer.DEFAULT_ARTICLES(package private) static final CharArraySetCatalanAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetCatalanAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ca that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetCatalanAnalyzer.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 CharArraySetCJKAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETMethods in org.apache.lucene.analysis.cjk that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetCJKAnalyzer.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 CharArraySetSoraniAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetSoraniAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ckb that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetSoraniAnalyzer.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 CharArraySetClassicAnalyzer.STOP_WORDS_SETAn 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 CharArraySetSmartChineseAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetSmartChineseAnalyzer.stopWordsMethods in org.apache.lucene.analysis.cn.smart that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetSmartChineseAnalyzer.getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.(package private) static CharArraySetSmartChineseAnalyzer.DefaultSetHolder.loadDefaultStopWordSet()Constructors in org.apache.lucene.analysis.cn.smart with parameters of type CharArraySetModifierConstructorDescriptionSmartChineseAnalyzer(CharArraySet stopWords) Create a new SmartChineseAnalyzer, using the providedSetof 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 CharArraySetCommonGramsFilterFactory.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 CharArraySetCompoundWordTokenFilterBase.dictionaryprivate CharArraySetDictionaryCompoundWordTokenFilterFactory.dictionaryprivate CharArraySetHyphenationCompoundWordTokenFilterFactory.dictionaryConstructors in org.apache.lucene.analysis.compound with parameters of type CharArraySetModifierConstructorDescriptionprotectedCompoundWordTokenFilterBase(TokenStream input, CharArraySet dictionary) protectedCompoundWordTokenFilterBase(TokenStream input, CharArraySet dictionary, boolean onlyLongestMatch) protectedCompoundWordTokenFilterBase(TokenStream input, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch) DictionaryCompoundWordTokenFilter(TokenStream input, CharArraySet dictionary) Creates a newDictionaryCompoundWordTokenFilterDictionaryCompoundWordTokenFilter(TokenStream input, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch) Creates a newDictionaryCompoundWordTokenFilterHyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary) Creates a newHyphenationCompoundWordTokenFilterinstance.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch) Creates a newHyphenationCompoundWordTokenFilterinstance.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch, boolean noSubMatches, boolean noOverlappingMatches) Creates a newHyphenationCompoundWordTokenFilterinstance. -
Uses of CharArraySet in org.apache.lucene.analysis.core
Methods in org.apache.lucene.analysis.core that return CharArraySetModifier and TypeMethodDescriptionprotected CharArraySetStopFilterFactory.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 CharArraySetCzechAnalyzer.DefaultSetHolder.DEFAULT_SETprivate final CharArraySetCzechAnalyzer.stemExclusionTableMethods in org.apache.lucene.analysis.cz that return CharArraySetModifier and TypeMethodDescriptionstatic final CharArraySetCzechAnalyzer.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 CharArraySetDanishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetDanishAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.da that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetDanishAnalyzer.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 CharArraySetGermanAnalyzer.DefaultSetHolder.DEFAULT_SETprivate final CharArraySetGermanAnalyzer.exclusionSetContains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.de that return CharArraySetModifier and TypeMethodDescriptionstatic final CharArraySetGermanAnalyzer.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 CharArraySetGreekAnalyzer.DefaultSetHolder.DEFAULT_SETprivate static final CharArraySetGreekStemmer.exc12aprivate static final CharArraySetGreekStemmer.exc12bprivate static final CharArraySetGreekStemmer.exc13private static final CharArraySetGreekStemmer.exc14private static final CharArraySetGreekStemmer.exc15aprivate static final CharArraySetGreekStemmer.exc15bprivate static final CharArraySetGreekStemmer.exc16private static final CharArraySetGreekStemmer.exc17private static final CharArraySetGreekStemmer.exc18private static final CharArraySetGreekStemmer.exc19private static final CharArraySetGreekStemmer.exc4private static final CharArraySetGreekStemmer.exc6private static final CharArraySetGreekStemmer.exc7private static final CharArraySetGreekStemmer.exc8aprivate static final CharArraySetGreekStemmer.exc8bprivate static final CharArraySetGreekStemmer.exc9Methods in org.apache.lucene.analysis.el that return CharArraySetModifier and TypeMethodDescriptionstatic final CharArraySetGreekAnalyzer.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 CharArraySetUAX29URLEmailAnalyzer.STOP_WORDS_SETAn 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 CharArraySetEnglishAnalyzer.ENGLISH_STOP_WORDS_SETAn unmodifiable set containing some common English words that are not usually useful for searching.private final CharArraySetEnglishAnalyzer.stemExclusionSetprivate CharArraySetAbstractWordsFileFilterFactory.wordsMethods in org.apache.lucene.analysis.en that return CharArraySetModifier and TypeMethodDescriptionprotected abstract CharArraySetAbstractWordsFileFilterFactory.createDefaultWords()Default word set implementation.static CharArraySetEnglishAnalyzer.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 CharArraySetSpanishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate static final CharArraySetSpanishPluralStemmer.invariantsprivate static final CharArraySetSpanishPluralStemmer.specialCasesprivate final CharArraySetSpanishAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.es that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetSpanishAnalyzer.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 CharArraySetEstonianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetEstonianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.et that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetEstonianAnalyzer.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 CharArraySetBasqueAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetBasqueAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.eu that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetBasqueAnalyzer.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 CharArraySetPersianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETMethods in org.apache.lucene.analysis.fa that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetPersianAnalyzer.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 words -
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 CharArraySetFinnishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetFinnishAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.fi that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetFinnishAnalyzer.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 CharArraySetFrenchAnalyzer.DEFAULT_ARTICLESDefault set of articles for ElisionFilter(package private) static final CharArraySetFrenchAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetFrenchAnalyzer.excltableContains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.fr that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetFrenchAnalyzer.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 CharArraySetIrishAnalyzer.DEFAULT_ARTICLES(package private) static final CharArraySetIrishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate static final CharArraySetIrishAnalyzer.HYPHENATIONSWhen 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 CharArraySetIrishAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ga that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetIrishAnalyzer.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 CharArraySetGalicianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetGalicianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.gl that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetGalicianAnalyzer.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 CharArraySetHindiAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetHindiAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.hi that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetHindiAnalyzer.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 CharArraySetHungarianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetHungarianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.hu that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetHungarianAnalyzer.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 CharArraySetArmenianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetArmenianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.hy that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetArmenianAnalyzer.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 CharArraySetIndonesianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetIndonesianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.id that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetIndonesianAnalyzer.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 CharArraySetItalianAnalyzer.DEFAULT_ARTICLES(package private) static final CharArraySetItalianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetItalianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.it that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetItalianAnalyzer.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 CharArraySetJapaneseAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETMethods 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 CharArraySetLithuanianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetLithuanianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.lt that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetLithuanianAnalyzer.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 CharArraySetLatvianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetLatvianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.lv that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetLatvianAnalyzer.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 CharArraySetCapitalizationFilter.keep(package private) CharArraySetCapitalizationFilterFactory.keepprivate final CharArraySetSetKeywordMarkerFilter.keywordSetprivate final CharArraySetRemoveDuplicatesTokenFilter.previousprivate final CharArraySetProtectedTermFilter.protectedTermsprivate CharArraySetProtectedTermFilterFactory.protectedTermsprivate CharArraySetKeywordMarkerFilterFactory.protectedWordsprivate CharArraySetWordDelimiterFilterFactory.protectedWordsDeprecated.private CharArraySetWordDelimiterGraphFilterFactory.protectedWords(package private) final CharArraySetWordDelimiterFilter.protWordsDeprecated.If not null is the set of tokens to protect from being delimited(package private) final CharArraySetWordDelimiterGraphFilter.protWordsIf not null is the set of tokens to protect from being delimitedprivate CharArraySetFingerprintFilter.uniqueTermsprivate final CharArraySetKeepWordFilter.wordsMethods in org.apache.lucene.analysis.miscellaneous that return CharArraySetModifier and TypeMethodDescriptionprotected CharArraySetKeepWordFilterFactory.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_TABLEas 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_TABLEas 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 CharArraySetNepaliAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetNepaliAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ne that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetNepaliAnalyzer.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 CharArraySetDutchAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetDutchAnalyzer.excltableContains words that should be indexed but not stemmed.private final CharArraySetDutchAnalyzer.stoptableContains the stopwords used with the StopFilter.Methods in org.apache.lucene.analysis.nl that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetDutchAnalyzer.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 CharArraySetNorwegianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetNorwegianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.no that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetNorwegianAnalyzer.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 CharArraySetPolishAnalyzer.DefaultsHolder.DEFAULT_STOP_SETprivate final CharArraySetPolishAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.pl that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetPolishAnalyzer.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 CharArraySetPortugueseAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprotected final CharArraySetRSLPStemmerBase.RuleWithSetExceptions.exceptionsprivate final CharArraySetPortugueseAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.pt that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetPortugueseAnalyzer.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 CharArraySetRomanianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetRomanianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ro that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetRomanianAnalyzer.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 CharArraySetRussianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetRussianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ru that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetRussianAnalyzer.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 CharArraySetSerbianAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetSerbianAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.sr that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetSerbianAnalyzer.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 CharArraySetSwedishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetSwedishAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.sv that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetSwedishAnalyzer.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 CharArraySetTamilAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetTamilAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.ta that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetTamilAnalyzer.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 CharArraySetTeluguAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetTeluguAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.te that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetTeluguAnalyzer.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 CharArraySetThaiAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETMethods in org.apache.lucene.analysis.th that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetThaiAnalyzer.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 CharArraySetTurkishAnalyzer.DefaultSetHolder.DEFAULT_STOP_SETprivate final CharArraySetTurkishAnalyzer.stemExclusionSetMethods in org.apache.lucene.analysis.tr that return CharArraySetModifier and TypeMethodDescriptionstatic CharArraySetTurkishAnalyzer.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 CharArraySetElisionFilter.articlesprivate CharArraySetElisionFilterFactory.articlesConstructors 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 CharArraySetSuffixingNGramTokenFilter.seenInfixesprivate final CharArraySetSuffixingNGramTokenFilter.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 CharArraySetSuggestStopFilter.stopWordsprivate CharArraySetSuggestStopFilterFactory.stopWordsMethods 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 CharArraySetTopSuggestDocsCollector.seenSurfaceFormsOnly set if we are deduplicating hits: holds all surface forms seen so far in the current segment
Class.getResourceAsStream(String)is caller sensitive and cannot load resources across Java Modules.