Uses of Class
org.apache.lucene.analysis.CharArraySet
-
Packages that use CharArraySet Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.analysis.ar Analyzer for Arabic.org.apache.lucene.analysis.bg Analyzer for Bulgarian.org.apache.lucene.analysis.bn Analyzer for Bengali Language.org.apache.lucene.analysis.br Analyzer for Brazilian Portuguese.org.apache.lucene.analysis.ca Analyzer for Catalan.org.apache.lucene.analysis.charfilter Normalization of text before the tokenizer.org.apache.lucene.analysis.cjk Analyzer for Chinese, Japanese, and Korean, which indexes bigrams.org.apache.lucene.analysis.ckb Analyzer for Sorani Kurdish.org.apache.lucene.analysis.cn.smart Analyzer for Simplified Chinese, which indexes words.org.apache.lucene.analysis.commongrams Construct n-grams for frequently occurring terms and phrases.org.apache.lucene.analysis.compound A filter that decomposes compound words you find in many Germanic languages into the word parts.org.apache.lucene.analysis.core Basic, general-purpose analysis components.org.apache.lucene.analysis.cz Analyzer for Czech.org.apache.lucene.analysis.da Analyzer for Danish.org.apache.lucene.analysis.de Analyzer for German.org.apache.lucene.analysis.el Analyzer for Greek.org.apache.lucene.analysis.en Analyzer for English.org.apache.lucene.analysis.es Analyzer for Spanish.org.apache.lucene.analysis.et Analyzer for Estonian.org.apache.lucene.analysis.eu Analyzer for Basque.org.apache.lucene.analysis.fa Analyzer for Persian.org.apache.lucene.analysis.fi Analyzer for Finnish.org.apache.lucene.analysis.fr Analyzer for French.org.apache.lucene.analysis.ga Analyzer for Irish.org.apache.lucene.analysis.gl Analyzer for Galician.org.apache.lucene.analysis.hi Analyzer for Hindi.org.apache.lucene.analysis.hu Analyzer for Hungarian.org.apache.lucene.analysis.hy Analyzer for Armenian.org.apache.lucene.analysis.id Analyzer for Indonesian.org.apache.lucene.analysis.it Analyzer for Italian.org.apache.lucene.analysis.ja Analyzer for Japanese.org.apache.lucene.analysis.lt Analyzer for Lithuanian.org.apache.lucene.analysis.lv Analyzer for Latvian.org.apache.lucene.analysis.miscellaneous Miscellaneous Tokenstreams.org.apache.lucene.analysis.nl Analyzer for Dutch.org.apache.lucene.analysis.no Analyzer for Norwegian.org.apache.lucene.analysis.pl Analyzer for Polish.org.apache.lucene.analysis.pt Analyzer for Portuguese.org.apache.lucene.analysis.ro Analyzer for Romanian.org.apache.lucene.analysis.ru Analyzer for Russian.org.apache.lucene.analysis.snowball TokenFilterandAnalyzerimplementations that use Snowball stemmers.org.apache.lucene.analysis.standard Fast, general-purpose grammar-based tokenizerStandardTokenizerimplements the Word Break rules from the Unicode Text Segmentation algorithm, as specified in Unicode Standard Annex #29.org.apache.lucene.analysis.sv Analyzer for Swedish.org.apache.lucene.analysis.th Analyzer for Thai.org.apache.lucene.analysis.tr Analyzer for Turkish.org.apache.lucene.analysis.util Utility functions for text analysis.org.apache.lucene.monitor Monitoring frameworkorg.apache.lucene.search.suggest.analyzing Analyzer based autosuggest.org.apache.lucene.search.suggest.document Support for document suggestion -
-
Uses of CharArraySet in org.apache.lucene.analysis
Fields in org.apache.lucene.analysis declared as CharArraySet Modifier and Type Field Description static CharArraySetCharArraySet. EMPTY_SETAn emptyCharArraySet.private CharArraySetCharArrayMap. keySetprotected CharArraySetStopwordAnalyzerBase. stopwordsAn immutable stopword setprivate CharArraySetStopFilter. stopWordsMethods in org.apache.lucene.analysis that return CharArraySet Modifier and Type Method Description static CharArraySetCharArraySet. copy(java.util.Set<?> set)Returns a copy of the given set as aCharArraySet.static CharArraySetWordlistLoader. getSnowballWordSet(java.io.Reader reader)Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader. getSnowballWordSet(java.io.Reader reader, CharArraySet result)Reads stopwords from a stopword list in Snowball format.CharArraySetStopwordAnalyzerBase. getStopwordSet()Returns the analyzer's stopword set or an empty set if the analyzer has no stopwordsstatic CharArraySetWordlistLoader. getWordSet(java.io.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(java.io.Reader reader, java.lang.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(java.io.Reader reader, java.lang.String comment, CharArraySet result)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(java.io.Reader reader, CharArraySet result)Reads lines from a Reader and adds every line as an entry to a CharArraySet (omitting leading and trailing whitespace).CharArraySetCharArrayMap. keySet()Returns anCharArraySetview on the map's keys.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(boolean ignoreCase, java.lang.Class<? extends Analyzer> aClass, java.lang.String resource, java.lang.String comment)Creates a CharArraySet from a file resource associated with a class.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(java.io.Reader stopwords)Creates a CharArraySet from a file.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(java.nio.file.Path stopwords)Creates a CharArraySet from a path.static CharArraySetStopFilter. makeStopSet(java.lang.String... stopWords)Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySetStopFilter. makeStopSet(java.lang.String[] stopWords, boolean ignoreCase)Creates a stopword set from the given stopword array.static CharArraySetStopFilter. makeStopSet(java.util.List<?> stopWords)Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySetStopFilter. makeStopSet(java.util.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 CharArraySet Modifier and Type Method Description static CharArraySetWordlistLoader. getSnowballWordSet(java.io.Reader reader, CharArraySet result)Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader. getWordSet(java.io.Reader reader, java.lang.String comment, CharArraySet result)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(java.io.Reader reader, CharArraySet result)Reads lines from a Reader and adds every 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 CharArraySet Constructor Description StopFilter(TokenStream in, CharArraySet stopWords)Constructs a filter which removes words from the input TokenStream that are named in the Set.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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetArabicAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetArabicAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.ar that return CharArraySet Modifier and Type Method Description static CharArraySetArabicAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.ar with parameters of type CharArraySet Constructor Description ArabicAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetBulgarianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetBulgarianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.bg that return CharArraySet Modifier and Type Method Description static CharArraySetBulgarianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.bg with parameters of type CharArraySet Constructor Description BulgarianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetBengaliAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetBengaliAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.bn that return CharArraySet Modifier and Type Method Description static CharArraySetBengaliAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.bn with parameters of type CharArraySet Constructor Description BengaliAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetBrazilianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetBrazilianAnalyzer. excltableContains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.br that return CharArraySet Modifier and Type Method Description static CharArraySetBrazilianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.br with parameters of type CharArraySet Constructor Description BrazilianAnalyzer(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 CharArraySet Modifier and Type Field Description private static CharArraySetCatalanAnalyzer. DEFAULT_ARTICLES(package private) static CharArraySetCatalanAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetCatalanAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.ca that return CharArraySet Modifier and Type Method Description static CharArraySetCatalanAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ca with parameters of type CharArraySet Constructor Description CatalanAnalyzer(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 Modifier and Type Field Description private CharArraySetHTMLStripCharFilter. escapedTags -
Uses of CharArraySet in org.apache.lucene.analysis.cjk
Fields in org.apache.lucene.analysis.cjk declared as CharArraySet Modifier and Type Field Description (package private) static CharArraySetCJKAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETMethods in org.apache.lucene.analysis.cjk that return CharArraySet Modifier and Type Method Description static CharArraySetCJKAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.cjk with parameters of type CharArraySet Constructor Description CJKAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetSoraniAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetSoraniAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.ckb that return CharArraySet Modifier and Type Method Description static CharArraySetSoraniAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ckb with parameters of type CharArraySet Constructor Description SoraniAnalyzer(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.cn.smart
Fields in org.apache.lucene.analysis.cn.smart declared as CharArraySet Modifier and Type Field Description (package private) static CharArraySetSmartChineseAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetSmartChineseAnalyzer. stopWordsMethods in org.apache.lucene.analysis.cn.smart that return CharArraySet Modifier and Type Method Description static 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 CharArraySet Constructor Description SmartChineseAnalyzer(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 CharArraySet Modifier and Type Field Description private CharArraySetCommonGramsFilter. commonWordsprivate CharArraySetCommonGramsFilterFactory. commonWordsMethods in org.apache.lucene.analysis.commongrams that return CharArraySet Modifier and Type Method Description CharArraySetCommonGramsFilterFactory. getCommonWords()Constructors in org.apache.lucene.analysis.commongrams with parameters of type CharArraySet Constructor Description CommonGramsFilter(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 CharArraySet Modifier and Type Field Description protected CharArraySetCompoundWordTokenFilterBase. dictionaryprivate CharArraySetDictionaryCompoundWordTokenFilterFactory. dictionaryprivate CharArraySetHyphenationCompoundWordTokenFilterFactory. dictionaryConstructors in org.apache.lucene.analysis.compound with parameters of type CharArraySet Constructor Description CompoundWordTokenFilterBase(TokenStream input, CharArraySet dictionary)CompoundWordTokenFilterBase(TokenStream input, CharArraySet dictionary, boolean onlyLongestMatch)CompoundWordTokenFilterBase(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. -
Uses of CharArraySet in org.apache.lucene.analysis.core
Fields in org.apache.lucene.analysis.core declared as CharArraySet Modifier and Type Field Description private CharArraySetStopFilterFactory. stopWordsMethods in org.apache.lucene.analysis.core that return CharArraySet Modifier and Type Method Description CharArraySetStopFilterFactory. getStopWords()Constructors in org.apache.lucene.analysis.core with parameters of type CharArraySet Constructor Description StopAnalyzer(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 CharArraySet Modifier and Type Field Description private static CharArraySetCzechAnalyzer.DefaultSetHolder. DEFAULT_SETprivate CharArraySetCzechAnalyzer. stemExclusionTableMethods in org.apache.lucene.analysis.cz that return CharArraySet Modifier and Type Method Description static CharArraySetCzechAnalyzer. getDefaultStopSet()Returns a set of default Czech-stopwordsConstructors in org.apache.lucene.analysis.cz with parameters of type CharArraySet Constructor Description CzechAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetDanishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetDanishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.da that return CharArraySet Modifier and Type Method Description static CharArraySetDanishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.da with parameters of type CharArraySet Constructor Description DanishAnalyzer(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 CharArraySet Modifier and Type Field Description private static CharArraySetGermanAnalyzer.DefaultSetHolder. DEFAULT_SETprivate CharArraySetGermanAnalyzer. exclusionSetContains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.de that return CharArraySet Modifier and Type Method Description static CharArraySetGermanAnalyzer. getDefaultStopSet()Returns a set of default German-stopwordsConstructors in org.apache.lucene.analysis.de with parameters of type CharArraySet Constructor Description GermanAnalyzer(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 CharArraySet Modifier and Type Field Description private static CharArraySetGreekAnalyzer.DefaultSetHolder. DEFAULT_SETprivate static CharArraySetGreekStemmer. exc12aprivate static CharArraySetGreekStemmer. exc12bprivate static CharArraySetGreekStemmer. exc13private static CharArraySetGreekStemmer. exc14private static CharArraySetGreekStemmer. exc15aprivate static CharArraySetGreekStemmer. exc15bprivate static CharArraySetGreekStemmer. exc16private static CharArraySetGreekStemmer. exc17private static CharArraySetGreekStemmer. exc18private static CharArraySetGreekStemmer. exc19private static CharArraySetGreekStemmer. exc4private static CharArraySetGreekStemmer. exc6private static CharArraySetGreekStemmer. exc7private static CharArraySetGreekStemmer. exc8aprivate static CharArraySetGreekStemmer. exc8bprivate static CharArraySetGreekStemmer. exc9Methods in org.apache.lucene.analysis.el that return CharArraySet Modifier and Type Method Description static CharArraySetGreekAnalyzer. getDefaultStopSet()Returns a set of default Greek-stopwordsConstructors in org.apache.lucene.analysis.el with parameters of type CharArraySet Constructor Description GreekAnalyzer(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 CharArraySet Modifier and Type Field Description static CharArraySetEnglishAnalyzer. ENGLISH_STOP_WORDS_SETAn unmodifiable set containing some common English words that are not usually useful for searching.private CharArraySetEnglishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.en that return CharArraySet Modifier and Type Method Description static CharArraySetEnglishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.en with parameters of type CharArraySet Constructor Description EnglishAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetSpanishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetSpanishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.es that return CharArraySet Modifier and Type Method Description static CharArraySetSpanishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.es with parameters of type CharArraySet Constructor Description SpanishAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetEstonianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetEstonianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.et that return CharArraySet Modifier and Type Method Description static CharArraySetEstonianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.et with parameters of type CharArraySet Constructor Description EstonianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetBasqueAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetBasqueAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.eu that return CharArraySet Modifier and Type Method Description static CharArraySetBasqueAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.eu with parameters of type CharArraySet Constructor Description BasqueAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetPersianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETMethods in org.apache.lucene.analysis.fa that return CharArraySet Modifier and Type Method Description static CharArraySetPersianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.fa with parameters of type CharArraySet Constructor Description PersianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetFinnishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetFinnishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.fi that return CharArraySet Modifier and Type Method Description static CharArraySetFinnishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.fi with parameters of type CharArraySet Constructor Description FinnishAnalyzer(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 CharArraySet Modifier and Type Field Description static CharArraySetFrenchAnalyzer. DEFAULT_ARTICLESDefault set of articles for ElisionFilter(package private) static CharArraySetFrenchAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetFrenchAnalyzer. excltableContains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.fr that return CharArraySet Modifier and Type Method Description static CharArraySetFrenchAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.fr with parameters of type CharArraySet Constructor Description FrenchAnalyzer(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 CharArraySet Modifier and Type Field Description private static CharArraySetIrishAnalyzer. DEFAULT_ARTICLES(package private) static CharArraySetIrishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate static 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 CharArraySetIrishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.ga that return CharArraySet Modifier and Type Method Description static CharArraySetIrishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ga with parameters of type CharArraySet Constructor Description IrishAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetGalicianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetGalicianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.gl that return CharArraySet Modifier and Type Method Description static CharArraySetGalicianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.gl with parameters of type CharArraySet Constructor Description GalicianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetHindiAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetHindiAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.hi that return CharArraySet Modifier and Type Method Description static CharArraySetHindiAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.hi with parameters of type CharArraySet Constructor Description HindiAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetHungarianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetHungarianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.hu that return CharArraySet Modifier and Type Method Description static CharArraySetHungarianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.hu with parameters of type CharArraySet Constructor Description HungarianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetArmenianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetArmenianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.hy that return CharArraySet Modifier and Type Method Description static CharArraySetArmenianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.hy with parameters of type CharArraySet Constructor Description ArmenianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetIndonesianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetIndonesianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.id that return CharArraySet Modifier and Type Method Description static CharArraySetIndonesianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.id with parameters of type CharArraySet Constructor Description IndonesianAnalyzer(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 CharArraySet Modifier and Type Field Description private static CharArraySetItalianAnalyzer. DEFAULT_ARTICLES(package private) static CharArraySetItalianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetItalianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.it that return CharArraySet Modifier and Type Method Description static CharArraySetItalianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.it with parameters of type CharArraySet Constructor Description ItalianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetJapaneseAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETMethods in org.apache.lucene.analysis.ja that return CharArraySet Modifier and Type Method Description static CharArraySetJapaneseAnalyzer. getDefaultStopSet()Constructors in org.apache.lucene.analysis.ja with parameters of type CharArraySet Constructor Description JapaneseAnalyzer(UserDictionary userDict, JapaneseTokenizer.Mode mode, CharArraySet stopwords, java.util.Set<java.lang.String> stoptags) -
Uses of CharArraySet in org.apache.lucene.analysis.lt
Fields in org.apache.lucene.analysis.lt declared as CharArraySet Modifier and Type Field Description (package private) static CharArraySetLithuanianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetLithuanianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.lt that return CharArraySet Modifier and Type Method Description static CharArraySetLithuanianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.lt with parameters of type CharArraySet Constructor Description LithuanianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetLatvianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetLatvianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.lv that return CharArraySet Modifier and Type Method Description static CharArraySetLatvianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.lv with parameters of type CharArraySet Constructor Description LatvianAnalyzer(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 CharArraySet Modifier and Type Field Description private CharArraySetCapitalizationFilter. keep(package private) CharArraySetCapitalizationFilterFactory. keepprivate CharArraySetSetKeywordMarkerFilter. keywordSetprivate CharArraySetRemoveDuplicatesTokenFilter. previousprivate CharArraySetProtectedTermFilter. protectedTermsprivate CharArraySetProtectedTermFilterFactory. protectedTermsprivate CharArraySetKeywordMarkerFilterFactory. protectedWordsprivate CharArraySetWordDelimiterFilterFactory. protectedWordsDeprecated.private CharArraySetWordDelimiterGraphFilterFactory. protectedWords(package private) CharArraySetWordDelimiterFilter. protWordsDeprecated.If not null is the set of tokens to protect from being delimited(package private) CharArraySetWordDelimiterGraphFilter. protWordsIf not null is the set of tokens to protect from being delimitedprivate CharArraySetFingerprintFilter. uniqueTermsprivate CharArraySetKeepWordFilter. wordsprivate CharArraySetKeepWordFilterFactory. wordsMethods in org.apache.lucene.analysis.miscellaneous that return CharArraySet Modifier and Type Method Description CharArraySetProtectedTermFilterFactory. getProtectedTerms()CharArraySetKeepWordFilterFactory. getWords()Constructors in org.apache.lucene.analysis.miscellaneous with parameters of type CharArraySet Constructor Description CapitalizationFilter(TokenStream in, boolean onlyFirstWord, CharArraySet keep, boolean forceFirstLetter, java.util.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, java.util.function.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.nl
Fields in org.apache.lucene.analysis.nl declared as CharArraySet Modifier and Type Field Description (package private) static CharArraySetDutchAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetDutchAnalyzer. excltableContains words that should be indexed but not stemmed.private CharArraySetDutchAnalyzer. stoptableContains the stopwords used with the StopFilter.Methods in org.apache.lucene.analysis.nl that return CharArraySet Modifier and Type Method Description static CharArraySetDutchAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.nl with parameters of type CharArraySet Constructor Description DutchAnalyzer(CharArraySet stopwords)DutchAnalyzer(CharArraySet stopwords, CharArraySet stemExclusionTable)DutchAnalyzer(CharArraySet stopwords, CharArraySet stemExclusionTable, CharArrayMap<java.lang.String> stemOverrideDict) -
Uses of CharArraySet in org.apache.lucene.analysis.no
Fields in org.apache.lucene.analysis.no declared as CharArraySet Modifier and Type Field Description (package private) static CharArraySetNorwegianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetNorwegianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.no that return CharArraySet Modifier and Type Method Description static CharArraySetNorwegianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.no with parameters of type CharArraySet Constructor Description NorwegianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetPolishAnalyzer.DefaultsHolder. DEFAULT_STOP_SETprivate CharArraySetPolishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.pl that return CharArraySet Modifier and Type Method Description static CharArraySetPolishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.pl with parameters of type CharArraySet Constructor Description PolishAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetPortugueseAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprotected CharArraySetRSLPStemmerBase.RuleWithSetExceptions. exceptionsprivate CharArraySetPortugueseAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.pt that return CharArraySet Modifier and Type Method Description static CharArraySetPortugueseAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.pt with parameters of type CharArraySet Constructor Description PortugueseAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetRomanianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetRomanianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.ro that return CharArraySet Modifier and Type Method Description static CharArraySetRomanianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.ro with parameters of type CharArraySet Constructor Description RomanianAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetRussianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetRussianAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.ru that return CharArraySet Modifier and Type Method Description static CharArraySetRussianAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop-words set.Constructors in org.apache.lucene.analysis.ru with parameters of type CharArraySet Constructor Description RussianAnalyzer(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 Modifier and Type Field Description private CharArraySetSnowballPorterFilterFactory. protectedWords -
Uses of CharArraySet in org.apache.lucene.analysis.standard
Fields in org.apache.lucene.analysis.standard declared as CharArraySet Modifier and Type Field Description static CharArraySetClassicAnalyzer. STOP_WORDS_SETAn unmodifiable set containing some common English words that are usually not useful for searching.static CharArraySetUAX29URLEmailAnalyzer. STOP_WORDS_SETAn unmodifiable set containing some common English words that are usually not useful for searching.Constructors in org.apache.lucene.analysis.standard with parameters of type CharArraySet Constructor Description ClassicAnalyzer(CharArraySet stopWords)Builds an analyzer with the given stop words.StandardAnalyzer(CharArraySet stopWords)Builds an analyzer with the given stop words.UAX29URLEmailAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetSwedishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetSwedishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.sv that return CharArraySet Modifier and Type Method Description static CharArraySetSwedishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.sv with parameters of type CharArraySet Constructor Description SwedishAnalyzer(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.th
Fields in org.apache.lucene.analysis.th declared as CharArraySet Modifier and Type Field Description (package private) static CharArraySetThaiAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETMethods in org.apache.lucene.analysis.th that return CharArraySet Modifier and Type Method Description static CharArraySetThaiAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.th with parameters of type CharArraySet Constructor Description ThaiAnalyzer(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 CharArraySet Modifier and Type Field Description (package private) static CharArraySetTurkishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SETprivate CharArraySetTurkishAnalyzer. stemExclusionSetMethods in org.apache.lucene.analysis.tr that return CharArraySet Modifier and Type Method Description static CharArraySetTurkishAnalyzer. getDefaultStopSet()Returns an unmodifiable instance of the default stop words set.Constructors in org.apache.lucene.analysis.tr with parameters of type CharArraySet Constructor Description TurkishAnalyzer(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 CharArraySet Modifier and Type Field Description private CharArraySetElisionFilter. articlesprivate CharArraySetElisionFilterFactory. articlesMethods in org.apache.lucene.analysis.util that return CharArraySet Modifier and Type Method Description protected CharArraySetAbstractAnalysisFactory. getSnowballWordSet(ResourceLoader loader, java.lang.String wordFiles, boolean ignoreCase)same asAbstractAnalysisFactory.getWordSet(ResourceLoader, String, boolean), except the input is in snowball format.protected CharArraySetAbstractAnalysisFactory. getWordSet(ResourceLoader loader, java.lang.String wordFiles, boolean ignoreCase)Returns asCharArraySetfrom wordFiles, which can be a comma-separated list of filenamesConstructors in org.apache.lucene.analysis.util with parameters of type CharArraySet Constructor Description ElisionFilter(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 CharArraySet Modifier and Type Field Description private CharArraySetSuffixingNGramTokenFilter. seenInfixesprivate CharArraySetSuffixingNGramTokenFilter. seenSuffixes -
Uses of CharArraySet in org.apache.lucene.search.suggest.analyzing
Fields in org.apache.lucene.search.suggest.analyzing declared as CharArraySet Modifier and Type Field Description private CharArraySetSuggestStopFilter. stopWordsprivate CharArraySetSuggestStopFilterFactory. stopWordsMethods in org.apache.lucene.search.suggest.analyzing that return CharArraySet Modifier and Type Method Description CharArraySetSuggestStopFilterFactory. getStopWords()Returns the configured stopword setConstructors in org.apache.lucene.search.suggest.analyzing with parameters of type CharArraySet Constructor Description SuggestStopFilter(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 CharArraySet Modifier and Type Field Description (package private) CharArraySetTopSuggestDocsCollector. seenSurfaceFormsOnly set if we are deduplicating hits: holds all surface forms seen so far in the current segment
-