Uses of Class
org.apache.lucene.analysis.CharArraySet
-
Packages that use CharArraySet Package Description org.apache.lucene.analysis Text analysis.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. -
-
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.protected CharArraySetStopwordAnalyzerBase. stopwordsAn immutable stopword setMethods in org.apache.lucene.analysis that return CharArraySet Modifier and Type Method Description static CharArraySetCharArraySet. copy(Set<?> set)Returns a copy of the given set as aCharArraySet.static CharArraySetWordlistLoader. getSnowballWordSet(Reader reader)Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader. getSnowballWordSet(Reader reader, CharArraySet result)Reads stopwords from a stopword list in Snowball format.CharArraySetStopwordAnalyzerBase. getStopwordSet()Returns the analyzer's stopword set or an empty set if the analyzer has no stopwordsstatic CharArraySetWordlistLoader. getWordSet(Reader reader)Reads lines from a Reader and adds every line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySetWordlistLoader. getWordSet(Reader reader, String comment)Reads lines from a Reader and adds every non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySetWordlistLoader. getWordSet(Reader reader, String comment, CharArraySet result)Reads lines from a Reader and adds every non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySetWordlistLoader. getWordSet(Reader reader, CharArraySet result)Reads lines from a Reader and adds every 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, Class<? extends Analyzer> aClass, String resource, String comment)Creates a CharArraySet from a file resource associated with a class.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(Reader stopwords)Creates a CharArraySet from a file.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(Path stopwords)Creates a CharArraySet from a path.static CharArraySetStopFilter. makeStopSet(String... stopWords)Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySetStopFilter. makeStopSet(String[] stopWords, boolean ignoreCase)Creates a stopword set from the given stopword array.static CharArraySetStopFilter. makeStopSet(List<?> stopWords)Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor.static CharArraySetStopFilter. makeStopSet(List<?> stopWords, boolean ignoreCase)Creates a stopword set from the given stopword list.static CharArraySetCharArraySet. unmodifiableSet(CharArraySet set)Returns an unmodifiableCharArraySet.Methods in org.apache.lucene.analysis with parameters of type CharArraySet Modifier and Type Method Description static CharArraySetWordlistLoader. getSnowballWordSet(Reader reader, CharArraySet result)Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader. getWordSet(Reader reader, String comment, CharArraySet result)Reads lines from a Reader and adds every non-comment line as an entry to a CharArraySet (omitting leading and trailing whitespace).static CharArraySetWordlistLoader. getWordSet(Reader reader, CharArraySet result)Reads lines from a Reader and adds every 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.standard
Fields in org.apache.lucene.analysis.standard declared as CharArraySet Modifier and Type Field Description static CharArraySetStandardAnalyzer. ENGLISH_STOP_WORDS_SETDeprecated.Use the stop words on EnglishAnalyzer in the analysis-common modulestatic CharArraySetStandardAnalyzer. STOP_WORDS_SETDeprecated.Use the stop words on EnglishAnalyzer in the analysis-common moduleConstructors in org.apache.lucene.analysis.standard with parameters of type CharArraySet Constructor Description StandardAnalyzer(CharArraySet stopWords)Builds an analyzer with the given stop words.
-