Uses of Class
org.apache.lucene.internal.hppc.IntHashSet
-
Packages that use IntHashSet Package Description org.apache.lucene.internal.hppc Internal copy of a subset of classes from the HPPC library.org.apache.lucene.queryparser.classic A simple query parser implemented with JavaCC.org.apache.lucene.util.automaton Finite-state automaton for regular expressions. -
-
Uses of IntHashSet in org.apache.lucene.internal.hppc
Methods in org.apache.lucene.internal.hppc that return IntHashSet Modifier and Type Method Description IntHashSet
IntHashSet. clone()
static IntHashSet
IntHashSet. from(int... elements)
Create a set from a variable number of arguments or an array ofint
.Methods in org.apache.lucene.internal.hppc with parameters of type IntHashSet Modifier and Type Method Description int
IntHashSet. addAll(IntHashSet set)
Adds all elements from the given set to this set.int
IntHashSet. removeAll(IntHashSet other)
Removes all keys present in a given container.private boolean
IntHashSet. sameKeys(IntHashSet 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 IntHashSet Constructor Description IntHashSet(IntHashSet set)
New instance copying elements from another set. -
Uses of IntHashSet in org.apache.lucene.queryparser.classic
Fields in org.apache.lucene.queryparser.classic declared as IntHashSet Modifier and Type Field Description private static IntHashSet
QueryParser. disallowedPostMultiTerm
-
Uses of IntHashSet in org.apache.lucene.util.automaton
Methods in org.apache.lucene.util.automaton that return IntHashSet Modifier and Type Method Description private static IntHashSet
Operations. toSet(Automaton a, int offset)
-