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 TokenFilter
andAnalyzer
implementations that use Snowball stemmers.org.apache.lucene.analysis.standard Fast, general-purpose grammar-based tokenizerStandardTokenizer
implements 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 CharArraySet
CharArraySet. EMPTY_SET
An emptyCharArraySet
.private CharArraySet
CharArrayMap. keySet
protected CharArraySet
StopwordAnalyzerBase. stopwords
An immutable stopword setprivate CharArraySet
StopFilter. stopWords
Methods in org.apache.lucene.analysis that return CharArraySet Modifier and Type Method Description static CharArraySet
CharArraySet. copy(java.util.Set<?> set)
Returns a copy of the given set as aCharArraySet
.static CharArraySet
WordlistLoader. getSnowballWordSet(java.io.Reader reader)
Reads stopwords from a stopword list in Snowball format.static CharArraySet
WordlistLoader. getSnowballWordSet(java.io.Reader reader, CharArraySet result)
Reads stopwords from a stopword list in Snowball format.CharArraySet
StopwordAnalyzerBase. getStopwordSet()
Returns the analyzer's stopword set or an empty set if the analyzer has no stopwordsstatic CharArraySet
WordlistLoader. 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 CharArraySet
WordlistLoader. 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 CharArraySet
WordlistLoader. 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 CharArraySet
WordlistLoader. 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).CharArraySet
CharArrayMap. keySet()
Returns anCharArraySet
view on the map's keys.protected static CharArraySet
StopwordAnalyzerBase. 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 CharArraySet
StopwordAnalyzerBase. loadStopwordSet(java.io.Reader stopwords)
Creates a CharArraySet from a file.protected static CharArraySet
StopwordAnalyzerBase. loadStopwordSet(java.nio.file.Path stopwords)
Creates a CharArraySet from a path.static CharArraySet
StopFilter. makeStopSet(java.lang.String... stopWords)
Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySet
StopFilter. makeStopSet(java.lang.String[] stopWords, boolean ignoreCase)
Creates a stopword set from the given stopword array.static CharArraySet
StopFilter. makeStopSet(java.util.List<?> stopWords)
Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySet
StopFilter. makeStopSet(java.util.List<?> stopWords, boolean ignoreCase)
Creates a stopword set from the given stopword list.static CharArraySet
CharArraySet. unmodifiableSet(CharArraySet set)
Returns an unmodifiableCharArraySet
.Methods in org.apache.lucene.analysis with parameters of type CharArraySet Modifier and Type Method Description static CharArraySet
WordlistLoader. getSnowballWordSet(java.io.Reader reader, CharArraySet result)
Reads stopwords from a stopword list in Snowball format.static CharArraySet
WordlistLoader. 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 CharArraySet
WordlistLoader. 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 CharArraySet
CharArraySet. 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 CharArraySet
ArabicAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
ArabicAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.ar that return CharArraySet Modifier and Type Method Description static CharArraySet
ArabicAnalyzer. 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 CharArraySet
BulgarianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
BulgarianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.bg that return CharArraySet Modifier and Type Method Description static CharArraySet
BulgarianAnalyzer. 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 CharArraySet
BengaliAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
BengaliAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.bn that return CharArraySet Modifier and Type Method Description static CharArraySet
BengaliAnalyzer. 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 CharArraySet
BrazilianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
BrazilianAnalyzer. excltable
Contains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.br that return CharArraySet Modifier and Type Method Description static CharArraySet
BrazilianAnalyzer. 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 CharArraySet
CatalanAnalyzer. DEFAULT_ARTICLES
(package private) static CharArraySet
CatalanAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
CatalanAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.ca that return CharArraySet Modifier and Type Method Description static CharArraySet
CatalanAnalyzer. 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 CharArraySet
HTMLStripCharFilter. 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 CharArraySet
CJKAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
Methods in org.apache.lucene.analysis.cjk that return CharArraySet Modifier and Type Method Description static CharArraySet
CJKAnalyzer. 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 CharArraySet
SoraniAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
SoraniAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.ckb that return CharArraySet Modifier and Type Method Description static CharArraySet
SoraniAnalyzer. 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 CharArraySet
SmartChineseAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
SmartChineseAnalyzer. stopWords
Methods in org.apache.lucene.analysis.cn.smart that return CharArraySet Modifier and Type Method Description static CharArraySet
SmartChineseAnalyzer. getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.(package private) static CharArraySet
SmartChineseAnalyzer.DefaultSetHolder. loadDefaultStopWordSet()
Constructors in org.apache.lucene.analysis.cn.smart with parameters of type CharArraySet Constructor Description SmartChineseAnalyzer(CharArraySet stopWords)
Create a new SmartChineseAnalyzer, using the providedSet
of stopwords. -
Uses of CharArraySet in org.apache.lucene.analysis.commongrams
Fields in org.apache.lucene.analysis.commongrams declared as CharArraySet Modifier and Type Field Description private CharArraySet
CommonGramsFilter. commonWords
private CharArraySet
CommonGramsFilterFactory. commonWords
Methods in org.apache.lucene.analysis.commongrams that return CharArraySet Modifier and Type Method Description CharArraySet
CommonGramsFilterFactory. 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 CharArraySet
CompoundWordTokenFilterBase. dictionary
private CharArraySet
DictionaryCompoundWordTokenFilterFactory. dictionary
private CharArraySet
HyphenationCompoundWordTokenFilterFactory. dictionary
Constructors 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 newDictionaryCompoundWordTokenFilter
DictionaryCompoundWordTokenFilter(TokenStream input, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
Creates a newDictionaryCompoundWordTokenFilter
HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary)
Creates a newHyphenationCompoundWordTokenFilter
instance.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
Creates a newHyphenationCompoundWordTokenFilter
instance. -
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 CharArraySet
StopFilterFactory. stopWords
Methods in org.apache.lucene.analysis.core that return CharArraySet Modifier and Type Method Description CharArraySet
StopFilterFactory. 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 CharArraySet
CzechAnalyzer.DefaultSetHolder. DEFAULT_SET
private CharArraySet
CzechAnalyzer. stemExclusionTable
Methods in org.apache.lucene.analysis.cz that return CharArraySet Modifier and Type Method Description static CharArraySet
CzechAnalyzer. 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 CharArraySet
DanishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
DanishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.da that return CharArraySet Modifier and Type Method Description static CharArraySet
DanishAnalyzer. 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 CharArraySet
GermanAnalyzer.DefaultSetHolder. DEFAULT_SET
private CharArraySet
GermanAnalyzer. exclusionSet
Contains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.de that return CharArraySet Modifier and Type Method Description static CharArraySet
GermanAnalyzer. 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 CharArraySet
GreekAnalyzer.DefaultSetHolder. DEFAULT_SET
private static CharArraySet
GreekStemmer. exc12a
private static CharArraySet
GreekStemmer. exc12b
private static CharArraySet
GreekStemmer. exc13
private static CharArraySet
GreekStemmer. exc14
private static CharArraySet
GreekStemmer. exc15a
private static CharArraySet
GreekStemmer. exc15b
private static CharArraySet
GreekStemmer. exc16
private static CharArraySet
GreekStemmer. exc17
private static CharArraySet
GreekStemmer. exc18
private static CharArraySet
GreekStemmer. exc19
private static CharArraySet
GreekStemmer. exc4
private static CharArraySet
GreekStemmer. exc6
private static CharArraySet
GreekStemmer. exc7
private static CharArraySet
GreekStemmer. exc8a
private static CharArraySet
GreekStemmer. exc8b
private static CharArraySet
GreekStemmer. exc9
Methods in org.apache.lucene.analysis.el that return CharArraySet Modifier and Type Method Description static CharArraySet
GreekAnalyzer. 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 CharArraySet
EnglishAnalyzer. ENGLISH_STOP_WORDS_SET
An unmodifiable set containing some common English words that are not usually useful for searching.private CharArraySet
EnglishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.en that return CharArraySet Modifier and Type Method Description static CharArraySet
EnglishAnalyzer. 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 CharArraySet
SpanishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
SpanishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.es that return CharArraySet Modifier and Type Method Description static CharArraySet
SpanishAnalyzer. 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 CharArraySet
EstonianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
EstonianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.et that return CharArraySet Modifier and Type Method Description static CharArraySet
EstonianAnalyzer. 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 CharArraySet
BasqueAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
BasqueAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.eu that return CharArraySet Modifier and Type Method Description static CharArraySet
BasqueAnalyzer. 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 CharArraySet
PersianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
Methods in org.apache.lucene.analysis.fa that return CharArraySet Modifier and Type Method Description static CharArraySet
PersianAnalyzer. 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 CharArraySet
FinnishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
FinnishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.fi that return CharArraySet Modifier and Type Method Description static CharArraySet
FinnishAnalyzer. 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 CharArraySet
FrenchAnalyzer. DEFAULT_ARTICLES
Default set of articles for ElisionFilter(package private) static CharArraySet
FrenchAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
FrenchAnalyzer. excltable
Contains words that should be indexed but not stemmed.Methods in org.apache.lucene.analysis.fr that return CharArraySet Modifier and Type Method Description static CharArraySet
FrenchAnalyzer. 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 CharArraySet
IrishAnalyzer. DEFAULT_ARTICLES
(package private) static CharArraySet
IrishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private static CharArraySet
IrishAnalyzer. HYPHENATIONS
When StandardTokenizer splits t‑athair into {t, athair}, we don't want to cause a position increment, otherwise there will be problems with phrase queries versus tAthair (which would not have a gap).private CharArraySet
IrishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.ga that return CharArraySet Modifier and Type Method Description static CharArraySet
IrishAnalyzer. 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 CharArraySet
GalicianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
GalicianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.gl that return CharArraySet Modifier and Type Method Description static CharArraySet
GalicianAnalyzer. 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 CharArraySet
HindiAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
HindiAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.hi that return CharArraySet Modifier and Type Method Description static CharArraySet
HindiAnalyzer. 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 CharArraySet
HungarianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
HungarianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.hu that return CharArraySet Modifier and Type Method Description static CharArraySet
HungarianAnalyzer. 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 CharArraySet
ArmenianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
ArmenianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.hy that return CharArraySet Modifier and Type Method Description static CharArraySet
ArmenianAnalyzer. 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 CharArraySet
IndonesianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
IndonesianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.id that return CharArraySet Modifier and Type Method Description static CharArraySet
IndonesianAnalyzer. 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 CharArraySet
ItalianAnalyzer. DEFAULT_ARTICLES
(package private) static CharArraySet
ItalianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
ItalianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.it that return CharArraySet Modifier and Type Method Description static CharArraySet
ItalianAnalyzer. 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 CharArraySet
JapaneseAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
Methods in org.apache.lucene.analysis.ja that return CharArraySet Modifier and Type Method Description static CharArraySet
JapaneseAnalyzer. 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 CharArraySet
LithuanianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
LithuanianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.lt that return CharArraySet Modifier and Type Method Description static CharArraySet
LithuanianAnalyzer. 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 CharArraySet
LatvianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
LatvianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.lv that return CharArraySet Modifier and Type Method Description static CharArraySet
LatvianAnalyzer. 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 CharArraySet
CapitalizationFilter. keep
(package private) CharArraySet
CapitalizationFilterFactory. keep
private CharArraySet
SetKeywordMarkerFilter. keywordSet
private CharArraySet
RemoveDuplicatesTokenFilter. previous
private CharArraySet
ProtectedTermFilter. protectedTerms
private CharArraySet
ProtectedTermFilterFactory. protectedTerms
private CharArraySet
KeywordMarkerFilterFactory. protectedWords
private CharArraySet
WordDelimiterFilterFactory. protectedWords
Deprecated.private CharArraySet
WordDelimiterGraphFilterFactory. protectedWords
(package private) CharArraySet
WordDelimiterFilter. protWords
Deprecated.If not null is the set of tokens to protect from being delimited(package private) CharArraySet
WordDelimiterGraphFilter. protWords
If not null is the set of tokens to protect from being delimitedprivate CharArraySet
FingerprintFilter. uniqueTerms
private CharArraySet
KeepWordFilter. words
private CharArraySet
KeepWordFilterFactory. words
Methods in org.apache.lucene.analysis.miscellaneous that return CharArraySet Modifier and Type Method Description CharArraySet
ProtectedTermFilterFactory. getProtectedTerms()
CharArraySet
KeepWordFilterFactory. 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_TABLE
as its charTypeTableWordDelimiterGraphFilter(TokenStream in, boolean adjustInternalOffsets, byte[] charTypeTable, int configurationFlags, CharArraySet protWords)
Creates a new WordDelimiterGraphFilterWordDelimiterGraphFilter(TokenStream in, int configurationFlags, CharArraySet protWords)
Creates a new WordDelimiterGraphFilter usingWordDelimiterIterator.DEFAULT_WORD_DELIM_TABLE
as its charTypeTable -
Uses of CharArraySet in org.apache.lucene.analysis.nl
Fields in org.apache.lucene.analysis.nl declared as CharArraySet Modifier and Type Field Description (package private) static CharArraySet
DutchAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
DutchAnalyzer. excltable
Contains words that should be indexed but not stemmed.private CharArraySet
DutchAnalyzer. stoptable
Contains the stopwords used with the StopFilter.Methods in org.apache.lucene.analysis.nl that return CharArraySet Modifier and Type Method Description static CharArraySet
DutchAnalyzer. 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 CharArraySet
NorwegianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
NorwegianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.no that return CharArraySet Modifier and Type Method Description static CharArraySet
NorwegianAnalyzer. 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 CharArraySet
PolishAnalyzer.DefaultsHolder. DEFAULT_STOP_SET
private CharArraySet
PolishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.pl that return CharArraySet Modifier and Type Method Description static CharArraySet
PolishAnalyzer. 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 CharArraySet
PortugueseAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
protected CharArraySet
RSLPStemmerBase.RuleWithSetExceptions. exceptions
private CharArraySet
PortugueseAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.pt that return CharArraySet Modifier and Type Method Description static CharArraySet
PortugueseAnalyzer. 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 CharArraySet
RomanianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
RomanianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.ro that return CharArraySet Modifier and Type Method Description static CharArraySet
RomanianAnalyzer. 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 CharArraySet
RussianAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
RussianAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.ru that return CharArraySet Modifier and Type Method Description static CharArraySet
RussianAnalyzer. 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 CharArraySet
SnowballPorterFilterFactory. 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 CharArraySet
ClassicAnalyzer. STOP_WORDS_SET
An unmodifiable set containing some common English words that are usually not useful for searching.static CharArraySet
UAX29URLEmailAnalyzer. STOP_WORDS_SET
An unmodifiable set containing some common English words that are usually not useful for searching.Constructors in org.apache.lucene.analysis.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 CharArraySet
SwedishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
SwedishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.sv that return CharArraySet Modifier and Type Method Description static CharArraySet
SwedishAnalyzer. 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 CharArraySet
ThaiAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
Methods in org.apache.lucene.analysis.th that return CharArraySet Modifier and Type Method Description static CharArraySet
ThaiAnalyzer. 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 CharArraySet
TurkishAnalyzer.DefaultSetHolder. DEFAULT_STOP_SET
private CharArraySet
TurkishAnalyzer. stemExclusionSet
Methods in org.apache.lucene.analysis.tr that return CharArraySet Modifier and Type Method Description static CharArraySet
TurkishAnalyzer. 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 CharArraySet
ElisionFilter. articles
private CharArraySet
ElisionFilterFactory. articles
Methods in org.apache.lucene.analysis.util that return CharArraySet Modifier and Type Method Description protected CharArraySet
AbstractAnalysisFactory. getSnowballWordSet(ResourceLoader loader, java.lang.String wordFiles, boolean ignoreCase)
same asAbstractAnalysisFactory.getWordSet(ResourceLoader, String, boolean)
, except the input is in snowball format.protected CharArraySet
AbstractAnalysisFactory. getWordSet(ResourceLoader loader, java.lang.String wordFiles, boolean ignoreCase)
Returns asCharArraySet
from 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 CharArraySet
SuffixingNGramTokenFilter. seenInfixes
private CharArraySet
SuffixingNGramTokenFilter. 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 CharArraySet
SuggestStopFilter. stopWords
private CharArraySet
SuggestStopFilterFactory. stopWords
Methods in org.apache.lucene.search.suggest.analyzing that return CharArraySet Modifier and Type Method Description CharArraySet
SuggestStopFilterFactory. 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) CharArraySet
TopSuggestDocsCollector. seenSurfaceForms
Only set if we are deduplicating hits: holds all surface forms seen so far in the current segment
-