Uses of Interface
org.infinispan.commons.util.IntSet

Packages that use IntSet
Package
Description
Commons package providing various utility classes
  • Uses of IntSet in org.infinispan.commons.util

    Classes in org.infinispan.commons.util that implement IntSet
    Modifier and Type
    Class
    Description
    class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    since 9.3 This class will no longer be public, please use IntSets.immutableSet(IntSet)
    class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    since 9.3 This class will no longer be public.
    class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    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 IntSet
    IntSets.concurrentCopyFrom(IntSet intSet, int maxExclusive)
    Returns a copy of the given set that supports concurrent operations.
    static IntSet
    IntSets.concurrentSet(int maxExclusive)
    Returns a concurrent mutable IntSet that can store values in the range of 0..maxExclusive-1
    static IntSet
    IntSets.from(byte[] bytes)
     
    static IntSet
    IntSets.from(PrimitiveIterator.OfInt iterator)
    Returns an IntSet based on the ints in the iterator.
    static IntSet
    IntSets.from(Set<Integer> integerSet)
    Returns an IntSet based on the provided Set.
    BloomFilter.getIntSet()
     
    static IntSet
    Returns an immutable IntSet containing no values
    static IntSet
    IntSets.immutableRangeSet(int endExclusive)
    Returns an immutable IntSet containing all values from 0 to endExclusive - 1.
    static IntSet
    IntSets.immutableSet(int value)
    Returns an immutable IntSet containing a single value
    static IntSet
    IntSets.immutableSet(IntSet set)
    Returns an immutable IntSet that wraps the given IntSet to prevent modifications.
    static IntSet
    IntSets.mutableCopyFrom(Set<Integer> mutableSet)
    Returns an IntSet that contains all ints from the given Set that is mutable.
    static IntSet
    IntSets.mutableEmptySet()
    Returns a mutable IntSet with no values set.
    static IntSet
    IntSets.mutableEmptySet(int maxExclusive)
    Returns an IntSet that contains no values but is initialized to hold ints equal to the maxExclusive -1 or smaller.
    static IntSet
    IntSets.mutableFrom(Set<Integer> integerSet)
    Returns an IntSet that is mutable that contains all of the values from the given set.
    static IntSet
    IntSets.mutableSet(int value)
    Returns a mutable set with the initial value set.
    static IntSet
    IntSets.mutableSet(int value1, int value2)
    Returns a mutable IntSet that begins with the initialized values
    static IntSet
    IntSetsExternalization.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
    boolean
    ImmutableIntSet.addAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    IntSet.addAll(IntSet set)
    Adds all ints from the provided set into this one
    boolean
    RangeSet.addAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    SmallIntSet.addAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static IntSet
    IntSets.concurrentCopyFrom(IntSet intSet, int maxExclusive)
    Returns a copy of the given set that supports concurrent operations.
    boolean
    ImmutableIntSet.containsAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    IntSet.containsAll(IntSet set)
    Whether this set contains all ints in the given IntSet
    boolean
    RangeSet.containsAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    SmallIntSet.containsAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static IntSet
    IntSets.immutableSet(IntSet set)
    Returns an immutable IntSet that wraps the given IntSet to prevent modifications.
    boolean
    IntSet.removeAll(IntSet set)
    Removes all ints from this IntSet that are in the provided IntSet
    boolean
    RangeSet.removeAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    SmallIntSet.removeAll(IntSet set)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    IntSet.retainAll(IntSet c)
    Modifies this set to remove all ints that are not present in the provided IntSet
    boolean
    RangeSet.retainAll(IntSet c)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    SmallIntSet.retainAll(IntSet c)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    void
    BloomFilter.setBits(IntSet intSet)
    Clears all current bits and sets them to the values in the provided IntSet.
    static void
    IntSetsExternalization.writeTo(ObjectOutput output, IntSet intSet)
     
    Constructors in org.infinispan.commons.util with parameters of type IntSet
    Modifier
    Constructor
    Description
     
    Deprecated, for removal: This API element is subject to removal in a future version.