Uses of Interface
org.infinispan.commons.util.IntSet
Packages that use IntSet
-
Uses of IntSet in org.infinispan.commons.util
Classes in org.infinispan.commons.util that implement IntSetModifier and TypeClassDescriptionclassConcurrent implementation of anIntSet.classImmutable empty IntSetclassRead-only set representing all the integers from0tosize - 1(inclusive).classImmutable implementation of IntSet that contains a single valueclassRepresent a set of integers (e.g. segments) as aBitSet.Methods in org.infinispan.commons.util that return IntSetModifier and TypeMethodDescriptionstatic IntSetIntSets.concurrentCopyFrom(IntSet intSet, int maxExclusive) Returns a copy of the given set that supports concurrent operations.static IntSetIntSets.concurrentSet(int maxExclusive) Returns a concurrent mutable IntSet that can store values in the range of0..maxExclusive-1static IntSetIntSets.from(byte[] bytes) static IntSetIntSets.from(PrimitiveIterator.OfInt iterator) Returns an IntSet based on the ints in the iterator.static IntSetReturns an IntSet based on the provided Set.BloomFilter.getIntSet()static IntSetIntSets.immutableEmptySet()Returns an immutable IntSet containing no valuesstatic IntSetIntSets.immutableOffsetIntSet(int start, int exclusiveEnd) Creates an immutableIntSetcontaining all values from to .static IntSetIntSets.immutableRangeSet(int endExclusive) Returns an immutable IntSet containing all values from0toendExclusive - 1.static IntSetIntSets.immutableSet(int value) Returns an immutable IntSet containing a single valuestatic IntSetIntSets.immutableSet(IntSet set) Returns an immutable IntSet that wraps the given IntSet to prevent modifications.static IntSetIntSets.mutableCopyFrom(Set<Integer> mutableSet) Returns an IntSet that contains all ints from the given Set that is mutable.static IntSetIntSets.mutableEmptySet()Returns a mutable IntSet with no values set.static IntSetIntSets.mutableEmptySet(int maxExclusive) Returns an IntSet that contains no values but is initialized to hold ints equal to themaxExclusive -1or smaller.static IntSetIntSets.mutableFrom(Set<Integer> integerSet) Returns an IntSet that is mutable that contains all of the values from the given set.static IntSetIntSets.mutableSet(int value) Returns a mutable set with the initial value set.static IntSetIntSets.mutableSet(int value1, int value2) Returns a mutable IntSet that begins with the initialized valuesMethods in org.infinispan.commons.util with parameters of type IntSetModifier and TypeMethodDescriptionbooleanbooleanAdds all ints from the provided set into this onebooleanbooleanstatic IntSetIntSets.concurrentCopyFrom(IntSet intSet, int maxExclusive) Returns a copy of the given set that supports concurrent operations.booleanConcurrentSmallIntSet.containsAll(IntSet set) booleanEmptyIntSet.containsAll(IntSet set) booleanIntSet.containsAll(IntSet set) Whether this set contains all ints in the given IntSetbooleanRangeSet.containsAll(IntSet set) booleanSingletonIntSet.containsAll(IntSet set) booleanSmallIntSet.containsAll(IntSet set) static IntSetIntSets.immutableSet(IntSet set) Returns an immutable IntSet that wraps the given IntSet to prevent modifications.booleanbooleanRemoves all ints from this IntSet that are in the provided IntSetbooleanbooleanbooleanbooleanModifies this set to remove all ints that are not present in the provided IntSetbooleanbooleanvoidClears all current bits and sets them to the values in the providedIntSet.