Uses of Class
org.apache.lucene.analysis.util.CharArraySet

Packages that use CharArraySet
org.apache.lucene.analysis.ar Analyzer for Arabic. 
org.apache.lucene.analysis.bg Analyzer for Bulgarian. 
org.apache.lucene.analysis.br Analyzer for Brazilian Portuguese. 
org.apache.lucene.analysis.ca Analyzer for Catalan. 
org.apache.lucene.analysis.cjk Analyzer for Chinese, Japanese, and Korean, which indexes bigrams. 
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.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 Analysis 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.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.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 and Analyzer implementations that use Snowball stemmers. 
org.apache.lucene.analysis.standard Fast, general-purpose grammar-based tokenizers. 
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. 
 

Uses of CharArraySet in org.apache.lucene.analysis.ar
 

Methods in org.apache.lucene.analysis.ar that return CharArraySet
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
ArabicAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
ArabicAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop word.
 

Uses of CharArraySet in org.apache.lucene.analysis.bg
 

Methods in org.apache.lucene.analysis.bg that return CharArraySet
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
BulgarianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
BulgarianAnalyzer(Version matchVersion, 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.br
 

Methods in org.apache.lucene.analysis.br that return CharArraySet
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
BrazilianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
BrazilianAnalyzer(Version matchVersion, 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
 

Methods in org.apache.lucene.analysis.ca that return CharArraySet
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
CatalanAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
CatalanAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.cjk
 

Methods in org.apache.lucene.analysis.cjk that return CharArraySet
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
CJKAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
 

Uses of CharArraySet in org.apache.lucene.analysis.commongrams
 

Methods in org.apache.lucene.analysis.commongrams that return CharArraySet
 CharArraySet CommonGramsFilterFactory.getCommonWords()
           
 CharArraySet CommonGramsQueryFilterFactory.getCommonWords()
           
 

Constructors in org.apache.lucene.analysis.commongrams with parameters of type CharArraySet
CommonGramsFilter(Version matchVersion, 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
protected  CharArraySet CompoundWordTokenFilterBase.dictionary
           
 

Constructors in org.apache.lucene.analysis.compound with parameters of type CharArraySet
CompoundWordTokenFilterBase(Version matchVersion, TokenStream input, CharArraySet dictionary)
           
CompoundWordTokenFilterBase(Version matchVersion, TokenStream input, CharArraySet dictionary, boolean onlyLongestMatch)
           
CompoundWordTokenFilterBase(Version matchVersion, TokenStream input, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
           
DictionaryCompoundWordTokenFilter(Version matchVersion, TokenStream input, CharArraySet dictionary)
          Creates a new DictionaryCompoundWordTokenFilter
DictionaryCompoundWordTokenFilter(Version matchVersion, TokenStream input, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
          Creates a new DictionaryCompoundWordTokenFilter
HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary)
          Creates a new HyphenationCompoundWordTokenFilter instance.
HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
          Creates a new HyphenationCompoundWordTokenFilter instance.
 

Uses of CharArraySet in org.apache.lucene.analysis.core
 

Fields in org.apache.lucene.analysis.core declared as CharArraySet
static CharArraySet StopAnalyzer.ENGLISH_STOP_WORDS_SET
          An unmodifiable set containing some common English words that are not usually useful for searching.
 

Methods in org.apache.lucene.analysis.core that return CharArraySet
 CharArraySet StopFilterFactory.getStopWords()
           
static CharArraySet StopFilter.makeStopSet(Version matchVersion, List<?> stopWords)
          Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.
static CharArraySet StopFilter.makeStopSet(Version matchVersion, List<?> stopWords, boolean ignoreCase)
          Creates a stopword set from the given stopword list.
static CharArraySet StopFilter.makeStopSet(Version matchVersion, String... stopWords)
          Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.
static CharArraySet StopFilter.makeStopSet(Version matchVersion, String[] stopWords, boolean ignoreCase)
          Creates a stopword set from the given stopword array.
 

Constructors in org.apache.lucene.analysis.core with parameters of type CharArraySet
StopAnalyzer(Version matchVersion, CharArraySet stopWords)
          Builds an analyzer with the stop words from the given set.
StopFilter(Version matchVersion, 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
 

Methods in org.apache.lucene.analysis.cz that return CharArraySet
static CharArraySet CzechAnalyzer.getDefaultStopSet()
          Returns a set of default Czech-stopwords
 

Constructors in org.apache.lucene.analysis.cz with parameters of type CharArraySet
CzechAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
CzechAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionTable)
          Builds an analyzer with the given stop words and a set of work to be excluded from the CzechStemFilter.
 

Uses of CharArraySet in org.apache.lucene.analysis.da
 

Methods in org.apache.lucene.analysis.da that return CharArraySet
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
DanishAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
DanishAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.de
 

Methods in org.apache.lucene.analysis.de that return CharArraySet
static CharArraySet GermanAnalyzer.getDefaultStopSet()
          Returns a set of default German-stopwords
 

Constructors in org.apache.lucene.analysis.de with parameters of type CharArraySet
GermanAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
GermanAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words
 

Uses of CharArraySet in org.apache.lucene.analysis.el
 

Methods in org.apache.lucene.analysis.el that return CharArraySet
static CharArraySet GreekAnalyzer.getDefaultStopSet()
          Returns a set of default Greek-stopwords
 

Constructors in org.apache.lucene.analysis.el with parameters of type CharArraySet
GreekAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.en
 

Methods in org.apache.lucene.analysis.en that return CharArraySet
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
EnglishAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
EnglishAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.es
 

Methods in org.apache.lucene.analysis.es that return CharArraySet
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
SpanishAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
SpanishAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.eu
 

Methods in org.apache.lucene.analysis.eu that return CharArraySet
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
BasqueAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
BasqueAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.fa
 

Methods in org.apache.lucene.analysis.fa that return CharArraySet
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
PersianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
 

Uses of CharArraySet in org.apache.lucene.analysis.fi
 

Methods in org.apache.lucene.analysis.fi that return CharArraySet
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
FinnishAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
FinnishAnalyzer(Version matchVersion, 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
static CharArraySet FrenchAnalyzer.DEFAULT_ARTICLES
          Default set of articles for ElisionFilter
 

Methods in org.apache.lucene.analysis.fr that return CharArraySet
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
FrenchAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
FrenchAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclutionSet)
          Builds an analyzer with the given stop words
 

Uses of CharArraySet in org.apache.lucene.analysis.ga
 

Methods in org.apache.lucene.analysis.ga that return CharArraySet
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
IrishAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
IrishAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.gl
 

Methods in org.apache.lucene.analysis.gl that return CharArraySet
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
GalicianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
GalicianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.hi
 

Methods in org.apache.lucene.analysis.hi that return CharArraySet
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
HindiAnalyzer(Version version, CharArraySet stopwords)
          Builds an analyzer with the given stop words
HindiAnalyzer(Version version, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words
 

Uses of CharArraySet in org.apache.lucene.analysis.hu
 

Methods in org.apache.lucene.analysis.hu that return CharArraySet
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
HungarianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
HungarianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.hy
 

Methods in org.apache.lucene.analysis.hy that return CharArraySet
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
ArmenianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
ArmenianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.id
 

Methods in org.apache.lucene.analysis.id that return CharArraySet
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
IndonesianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
IndonesianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop word.
 

Uses of CharArraySet in org.apache.lucene.analysis.it
 

Methods in org.apache.lucene.analysis.it that return CharArraySet
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
ItalianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
ItalianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.lv
 

Methods in org.apache.lucene.analysis.lv that return CharArraySet
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
LatvianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
LatvianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.miscellaneous
 

Methods in org.apache.lucene.analysis.miscellaneous that return CharArraySet
 CharArraySet KeepWordFilterFactory.getWords()
           
 

Constructors in org.apache.lucene.analysis.miscellaneous with parameters of type CharArraySet
CapitalizationFilter(TokenStream in, boolean onlyFirstWord, CharArraySet keep, boolean forceFirstLetter, Collection<char[]> okPrefix, int minWordLength, int maxWordCount, int maxTokenLength)
          Creates a CapitalizationFilter with the specified parameters.
KeepWordFilter(boolean enablePositionIncrements, TokenStream in, CharArraySet words)
          The words set passed to this constructor will be directly used by this filter and should not be modified,
KeywordMarkerFilter(TokenStream in, CharArraySet keywordSet)
          Create a new KeywordMarkerFilter, that marks the current token as a keyword if the tokens term buffer is contained in the given set via the KeywordAttribute.
PatternAnalyzer(Version matchVersion, Pattern pattern, boolean toLowerCase, CharArraySet stopWords)
          Deprecated. Constructs a new instance with the given parameters.
WordDelimiterFilter(TokenStream in, byte[] charTypeTable, int configurationFlags, CharArraySet protWords)
          Creates a new WordDelimiterFilter
WordDelimiterFilter(TokenStream in, int configurationFlags, CharArraySet protWords)
          Creates a new WordDelimiterFilter using WordDelimiterIterator.DEFAULT_WORD_DELIM_TABLE as its charTypeTable
 

Uses of CharArraySet in org.apache.lucene.analysis.nl
 

Methods in org.apache.lucene.analysis.nl that return CharArraySet
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
DutchAnalyzer(Version matchVersion, CharArraySet stopwords)
           
DutchAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionTable)
           
DutchAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionTable, CharArrayMap<String> stemOverrideDict)
           
 

Uses of CharArraySet in org.apache.lucene.analysis.no
 

Methods in org.apache.lucene.analysis.no that return CharArraySet
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
NorwegianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
NorwegianAnalyzer(Version matchVersion, 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
protected  CharArraySet RSLPStemmerBase.RuleWithSetExceptions.exceptions
           
 

Methods in org.apache.lucene.analysis.pt that return CharArraySet
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
PortugueseAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
PortugueseAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.ro
 

Methods in org.apache.lucene.analysis.ro that return CharArraySet
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
RomanianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
RomanianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.ru
 

Methods in org.apache.lucene.analysis.ru that return CharArraySet
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
RussianAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words
RussianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words
 

Uses of CharArraySet in org.apache.lucene.analysis.snowball
 

Constructors in org.apache.lucene.analysis.snowball with parameters of type CharArraySet
SnowballAnalyzer(Version matchVersion, String name, CharArraySet stopWords)
          Deprecated. Builds the named analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.standard
 

Fields in org.apache.lucene.analysis.standard declared as CharArraySet
static CharArraySet UAX29URLEmailAnalyzer.STOP_WORDS_SET
          An unmodifiable set containing some common English words that are usually not useful for searching.
static CharArraySet StandardAnalyzer.STOP_WORDS_SET
          An unmodifiable set containing some common English words that are usually not useful for searching.
static CharArraySet ClassicAnalyzer.STOP_WORDS_SET
          An unmodifiable set containing some common English words that are usually not useful for searching.
 

Constructors in org.apache.lucene.analysis.standard with parameters of type CharArraySet
ClassicAnalyzer(Version matchVersion, CharArraySet stopWords)
          Builds an analyzer with the given stop words.
StandardAnalyzer(Version matchVersion, CharArraySet stopWords)
          Builds an analyzer with the given stop words.
UAX29URLEmailAnalyzer(Version matchVersion, CharArraySet stopWords)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.sv
 

Methods in org.apache.lucene.analysis.sv that return CharArraySet
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
SwedishAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
SwedishAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.th
 

Methods in org.apache.lucene.analysis.th that return CharArraySet
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
ThaiAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
 

Uses of CharArraySet in org.apache.lucene.analysis.tr
 

Methods in org.apache.lucene.analysis.tr that return CharArraySet
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
TurkishAnalyzer(Version matchVersion, CharArraySet stopwords)
          Builds an analyzer with the given stop words.
TurkishAnalyzer(Version matchVersion, 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
static CharArraySet CharArraySet.EMPTY_SET
           
protected  CharArraySet StopwordAnalyzerBase.stopwords
          An immutable stopword set
 

Methods in org.apache.lucene.analysis.util that return CharArraySet
static CharArraySet CharArraySet.copy(Version matchVersion, Set<?> set)
          Returns a copy of the given set as a CharArraySet.
static CharArraySet WordlistLoader.getSnowballWordSet(Reader reader, CharArraySet result)
          Reads stopwords from a stopword list in Snowball format.
static CharArraySet WordlistLoader.getSnowballWordSet(Reader reader, Version matchVersion)
          Reads stopwords from a stopword list in Snowball format.
protected  CharArraySet AbstractAnalysisFactory.getSnowballWordSet(ResourceLoader loader, String wordFiles, boolean ignoreCase)
          same as AbstractAnalysisFactory.getWordSet(ResourceLoader, String, boolean), except the input is in snowball format.
 CharArraySet StopwordAnalyzerBase.getStopwordSet()
          Returns the analyzer's stopword set or an empty set if the analyzer has no stopwords
static CharArraySet WordlistLoader.getWordSet(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 WordlistLoader.getWordSet(Reader reader, 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(Reader reader, String comment, Version matchVersion)
          Reads lines from a Reader and adds every non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).
static CharArraySet WordlistLoader.getWordSet(Reader reader, Version matchVersion)
          Reads lines from a Reader and adds every line as an entry to a CharArraySet (omitting leading and trailing whitespace).
protected  CharArraySet AbstractAnalysisFactory.getWordSet(ResourceLoader loader, String wordFiles, boolean ignoreCase)
          Returns as CharArraySet from wordFiles, which can be a comma-separated list of filenames
 CharArraySet CharArrayMap.keySet()
          Returns an CharArraySet view on the map's keys.
protected static CharArraySet StopwordAnalyzerBase.loadStopwordSet(boolean ignoreCase, Class<? extends Analyzer> aClass, String resource, String comment)
          Creates a CharArraySet from a file resource associated with a class.
protected static CharArraySet StopwordAnalyzerBase.loadStopwordSet(File stopwords, Version matchVersion)
          Creates a CharArraySet from a file.
protected static CharArraySet StopwordAnalyzerBase.loadStopwordSet(Reader stopwords, Version matchVersion)
          Creates a CharArraySet from a file.
static CharArraySet CharArraySet.unmodifiableSet(CharArraySet set)
          Returns an unmodifiable CharArraySet.
 

Methods in org.apache.lucene.analysis.util with parameters of type CharArraySet
static CharArraySet WordlistLoader.getSnowballWordSet(Reader reader, CharArraySet result)
          Reads stopwords from a stopword list in Snowball format.
static CharArraySet WordlistLoader.getWordSet(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 WordlistLoader.getWordSet(Reader reader, 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 CharArraySet.unmodifiableSet(CharArraySet set)
          Returns an unmodifiable CharArraySet.
 

Constructors in org.apache.lucene.analysis.util with parameters of type CharArraySet
ElisionFilter(TokenStream input, CharArraySet articles)
          Constructs an elision filter with a Set of stop words
StopwordAnalyzerBase(Version version, CharArraySet stopwords)
          Creates a new instance initialized with the given stopword set
 



Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.