Uses of Class
org.apache.lucene.internal.hppc.CharHashSet
-
Packages that use CharHashSet Package Description org.apache.lucene.analysis.hunspell A Java implementation of Hunspell stemming and spell-checking algorithms (Hunspell
), and a stemming TokenFilter (HunspellStemFilter
) based on it.org.apache.lucene.internal.hppc Internal copy of a subset of classes from the HPPC library.org.apache.lucene.search.vectorhighlight Another highlighter implementation based on term vectors. -
-
Uses of CharHashSet in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as CharHashSet Modifier and Type Field Description (package private) CharHashSet
WordFormGenerator.FlagSet. flags
Methods in org.apache.lucene.analysis.hunspell that return CharHashSet Modifier and Type Method Description (package private) static CharHashSet
WordFormGenerator.FlagSet. flatten(java.util.Set<WordFormGenerator.FlagSet> flagSets)
Methods in org.apache.lucene.analysis.hunspell with parameters of type CharHashSet Modifier and Type Method Description private void
WordFormGenerator.WordCompressor. addEntry(java.util.List<DictEntry> toEdit, java.util.List<DictEntry> toAdd, java.lang.String stem, CharHashSet flags)
private java.util.List<AffixedWord>
WordFormGenerator.WordCompressor. expand(java.lang.String stem, CharHashSet flagSet)
private void
Dictionary. parseAffix(java.util.TreeMap<java.lang.String,IntArrayList> affixes, CharHashSet secondStageFlags, java.lang.String header, java.io.LineNumberReader reader, AffixKind kind, java.util.Map<java.lang.String,java.lang.Integer> seenPatterns, java.util.Map<java.lang.String,java.lang.Integer> seenStrips, FlagEnumerator flags)
Parses a specific affix rule putting the result into the provided affix mapprivate java.lang.String
WordFormGenerator.WordCompressor. toFlagString(CharHashSet flagSet)
(package private) static char[]
Dictionary. toSortedCharArray(CharHashSet set)
Constructors in org.apache.lucene.analysis.hunspell with parameters of type CharHashSet Constructor Description FlagSet(CharHashSet flags, Dictionary dictionary)
-
Uses of CharHashSet in org.apache.lucene.internal.hppc
Methods in org.apache.lucene.internal.hppc that return CharHashSet Modifier and Type Method Description CharHashSet
CharHashSet. clone()
static CharHashSet
CharHashSet. from(char... elements)
Create a set from a variable number of arguments or an array ofchar
.Methods in org.apache.lucene.internal.hppc with parameters of type CharHashSet Modifier and Type Method Description int
CharHashSet. addAll(CharHashSet set)
Adds all elements from the given set to this set.int
CharHashSet. removeAll(CharHashSet other)
Removes all keys present in a given container.private boolean
CharHashSet. sameKeys(CharHashSet other)
Return true if all keys of some other container exist in this container.Constructors in org.apache.lucene.internal.hppc with parameters of type CharHashSet Constructor Description CharHashSet(CharHashSet set)
New instance copying elements from another set. -
Uses of CharHashSet in org.apache.lucene.search.vectorhighlight
Fields in org.apache.lucene.search.vectorhighlight declared as CharHashSet Modifier and Type Field Description protected CharHashSet
SimpleBoundaryScanner. boundaryChars
-