Uses of Class
org.apache.lucene.analysis.CharArraySet
-
Packages that use CharArraySet Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens. -
-
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_SETprotected CharArraySetStopwordAnalyzerBase. stopwordsAn immutable stopword setMethods in org.apache.lucene.analysis that return CharArraySet Modifier and Type Method Description static CharArraySetCharArraySet. copy(Set<?> set)Deprecated.usecopy(Version, Set)instead.static CharArraySetCharArraySet. copy(Version matchVersion, Set<?> set)Returns a copy of the given set as aCharArraySet.static CharArraySetWordlistLoader. getSnowballWordSet(Reader reader, CharArraySet result)Reads stopwords from a stopword list in Snowball format.static CharArraySetWordlistLoader. getSnowballWordSet(Reader reader, Version matchVersion)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, 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 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 CharArraySetWordlistLoader. 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).CharArraySetCharArrayMap. keySet()Returns anCharArraySetview on the map's keys.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(boolean ignoreCase, Class<? extends ReusableAnalyzerBase> aClass, String resource, String comment)Creates a CharArraySet from a file resource associated with a class.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(File stopwords, Version matchVersion)Creates a CharArraySet from a file.protected static CharArraySetStopwordAnalyzerBase. loadStopwordSet(Reader stopwords, Version matchVersion)Creates a CharArraySet from a file.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 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 theKeywordAttribute.
-