Uses of Interface
org.infinispan.commons.util.IntSet
-
Packages that use IntSet Package Description org.infinispan.client.hotrod Hot Rod client API.org.infinispan.commons.util Commons package providing various utility classes -
-
Uses of IntSet in org.infinispan.client.hotrod
Methods in org.infinispan.client.hotrod with parameters of type IntSet Modifier and Type Method Description CloseableIteratorSet<Map.Entry<K,V>>RemoteCache. entrySet(IntSet segments)This method is identical toRemoteCache.entrySet()except that it will only return entries that map to the given segments.CloseableIteratorSet<K>RemoteCache. keySet(IntSet segments)This method is identical toRemoteCache.keySet()except that it will only return keys that map to the given segments.CloseableIteratorCollection<V>RemoteCache. values(IntSet segments)This method is identical toRemoteCache.values()except that it will only return values that map to the given segments. -
Uses of IntSet in org.infinispan.commons.util
Classes in org.infinispan.commons.util that implement IntSet Modifier and Type Class Description classImmutableIntSetDeprecated.since 9.3 This class will no longer be public, please useIntSets.immutableSet(IntSet)classRangeSetDeprecated.since 9.3 This class will no longer be public.classSmallIntSetDeprecated.since 9.3 This class will no longer be public.Methods in org.infinispan.commons.util that return IntSet Modifier and Type Method Description static 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(PrimitiveIterator.OfInt iterator)Returns an IntSet based on the ints in the iterator.static IntSetIntSets. from(Set<Integer> integerSet)Returns an IntSet based on the provided Set.static IntSetIntSets. immutableEmptySet()Returns an immutable IntSet containing no valuesstatic 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 valuesstatic IntSetIntSetsExternalization. readFrom(ObjectInput input)Methods in org.infinispan.commons.util that return types with arguments of type IntSet Modifier and Type Method Description static Set<Class<? extends IntSet>>IntSetsExternalization. getTypeClasses()Methods in org.infinispan.commons.util with parameters of type IntSet Modifier and Type Method Description booleanImmutableIntSet. addAll(IntSet set)Deprecated.booleanIntSet. addAll(IntSet set)Adds all ints from the provided set into this onebooleanRangeSet. addAll(IntSet set)Deprecated.booleanSmallIntSet. addAll(IntSet set)Deprecated.static IntSetIntSets. concurrentCopyFrom(IntSet intSet, int maxExclusive)Returns a copy of the given set that supports concurrent operations.booleanImmutableIntSet. containsAll(IntSet set)Deprecated.booleanIntSet. containsAll(IntSet set)Whether this set contains all ints in the given IntSetbooleanRangeSet. containsAll(IntSet set)Deprecated.booleanSmallIntSet. containsAll(IntSet set)Deprecated.static IntSetIntSets. immutableSet(IntSet set)Returns an immutable IntSet that wraps the given IntSet to prevent modifications.booleanIntSet. removeAll(IntSet set)Removes all ints from this IntSet that are in the provided IntSetbooleanRangeSet. removeAll(IntSet set)Deprecated.booleanSmallIntSet. removeAll(IntSet set)Deprecated.booleanIntSet. retainAll(IntSet c)Modifies this set to remove all ints that are not present in the provided IntSetbooleanRangeSet. retainAll(IntSet c)Deprecated.booleanSmallIntSet. retainAll(IntSet c)Deprecated.static voidIntSetsExternalization. writeTo(ObjectOutput output, IntSet intSet)Constructors in org.infinispan.commons.util with parameters of type IntSet Constructor Description ImmutableIntSet(IntSet set)Deprecated.
-