Uses of Class
org.apache.lucene.analysis.CharArrayMap
-
Packages that use CharArrayMap Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.analysis.charfilter Normalization of text before the tokenizer.org.apache.lucene.analysis.en Analyzer for English.org.apache.lucene.analysis.nl Analyzer for Dutch. -
-
Uses of CharArrayMap in org.apache.lucene.analysis
Subclasses of CharArrayMap in org.apache.lucene.analysis Modifier and Type Class Description private static class
CharArrayMap.EmptyCharArrayMap<V>
EmptyCharArrayMap.UnmodifiableCharArrayMap
optimized for speed.(package private) static class
CharArrayMap.UnmodifiableCharArrayMap<V>
Fields in org.apache.lucene.analysis declared as CharArrayMap Modifier and Type Field Description private static CharArrayMap<?>
CharArrayMap. EMPTY_MAP
private CharArrayMap<java.lang.Object>
CharArraySet. map
Methods in org.apache.lucene.analysis that return CharArrayMap Modifier and Type Method Description static <V> CharArrayMap<V>
CharArrayMap. copy(java.util.Map<?,? extends V> map)
Returns a copy of the given map as aCharArrayMap
.static <V> CharArrayMap<V>
CharArrayMap. emptyMap()
Returns an empty, unmodifiable map.static CharArrayMap<java.lang.String>
WordlistLoader. getStemDict(java.io.Reader reader, CharArrayMap<java.lang.String> result)
Reads a stem dictionary.static <V> CharArrayMap<V>
CharArrayMap. unmodifiableMap(CharArrayMap<V> map)
Returns an unmodifiableCharArrayMap
.Methods in org.apache.lucene.analysis with parameters of type CharArrayMap Modifier and Type Method Description static CharArrayMap<java.lang.String>
WordlistLoader. getStemDict(java.io.Reader reader, CharArrayMap<java.lang.String> result)
Reads a stem dictionary.static <V> CharArrayMap<V>
CharArrayMap. unmodifiableMap(CharArrayMap<V> map)
Returns an unmodifiableCharArrayMap
.Constructors in org.apache.lucene.analysis with parameters of type CharArrayMap Constructor Description CharArrayMap(CharArrayMap<V> toCopy)
Create set from the supplied map (used internally for readonly maps...)CharArraySet(CharArrayMap<java.lang.Object> map)
Create set from the specified map (internal only), used also bykeySet()
UnmodifiableCharArrayMap(CharArrayMap<V> map)
-
Uses of CharArrayMap in org.apache.lucene.analysis.charfilter
Fields in org.apache.lucene.analysis.charfilter declared as CharArrayMap Modifier and Type Field Description private static CharArrayMap<java.lang.Character>
HTMLStripCharFilter. entityValues
-
Uses of CharArrayMap in org.apache.lucene.analysis.en
Fields in org.apache.lucene.analysis.en declared as CharArrayMap Modifier and Type Field Description private static CharArrayMap<KStemmer.DictEntry>
KStemmer. dict_ht
Methods in org.apache.lucene.analysis.en that return CharArrayMap Modifier and Type Method Description private static CharArrayMap<KStemmer.DictEntry>
KStemmer. initializeDictHash()
-
Uses of CharArrayMap in org.apache.lucene.analysis.nl
Fields in org.apache.lucene.analysis.nl declared as CharArrayMap Modifier and Type Field Description (package private) static CharArrayMap<java.lang.String>
DutchAnalyzer.DefaultSetHolder. DEFAULT_STEM_DICT
Constructors in org.apache.lucene.analysis.nl with parameters of type CharArrayMap Constructor Description DutchAnalyzer(CharArraySet stopwords, CharArraySet stemExclusionTable, CharArrayMap<java.lang.String> stemOverrideDict)
-