Class ImmutableIntSet

java.lang.Object
org.infinispan.commons.util.ImmutableIntSet
All Implemented Interfaces:
Iterable<Integer>, Collection<Integer>, Set<Integer>, IntSet

@Deprecated(forRemoval=true) public class ImmutableIntSet extends Object
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)
Immutable wrapper for IntSet.
Since:
9.2
Author:
Dan Berindei
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    add(int i)
    Adds the given int to this set and returns true if it was set or false if it was already present
    boolean
    add(Integer integer)
     
    boolean
    addAll(Collection<? extends Integer> c)
     
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Adds all ints from the provided set into this one
    void
     
    boolean
    contains(int i)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Whether this set contains the given int
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Whether this set contains all ints in the given IntSet
    void
    forEach(Consumer<? super Integer> action)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Performs the given action for each int of the IntSet until all elements have been processed or the action throws an exception.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Creates a Spliterator.OfInt over the ints in this set.
    Deprecated, for removal: This API element is subject to removal in a future version.
    A stream of ints representing the data in this set
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
    A primtive iterator that allows iteration over the int values.
    boolean
    remove(int i)
    Removes, if present, the int from the set and returns if it was present or not
    boolean
     
    boolean
     
    boolean
    Removes all ints from this IntSet that are in the provided IntSet
    boolean
    Removes all of the ints of this set that satisfy the given predicate.
    boolean
    removeIf(Predicate<? super Integer> filter)
     
    boolean
     
    boolean
    Modifies this set to remove all ints that are not present in the provided IntSet
    void
    set(int i)
    Adds or sets the int without returning whether it was previously set
    int
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    <T> T[]
    toArray(T[] a)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    byte[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns a byte array that has a bit set for each int in this set where each byte represents 8 numbers.
    int[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing all of the elements in this set.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.util.Collection

    parallelStream, toArray

    Methods inherited from interface org.infinispan.commons.util.IntSet

    stream

    Methods inherited from interface java.util.Set

    equals, hashCode, spliterator
  • Constructor Details

    • ImmutableIntSet

      public ImmutableIntSet(IntSet set)
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • contains

      public boolean contains(int i)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      Whether this set contains the given int
      Parameters:
      i - the int to check
      Returns:
      if the set contains the int
    • addAll

      public boolean addAll(IntSet set)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      Adds all ints from the provided set into this one
      Specified by:
      addAll in interface IntSet
      Parameters:
      set - the set of ints to add
      Returns:
      if this set has a new int in it
    • containsAll

      public boolean containsAll(IntSet set)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      Whether this set contains all ints in the given IntSet
      Parameters:
      set - the set to check if all are present
      Returns:
      if the set contains all the ints
    • size

      public int size()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • isEmpty

      public boolean isEmpty()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • contains

      public boolean contains(Object o)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • iterator

      public PrimitiveIterator.OfInt iterator()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      A primtive iterator that allows iteration over the int values. This iterator supports removal if the set is modifiable.
      Returns:
      the iterator
    • toIntArray

      public int[] toIntArray()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      Returns an array containing all of the elements in this set. If this set makes any guarantees as to what order its elements are returned by its iterator, this method must return the elements in the same order.
      Returns:
      this int set as an array
    • toArray

      public Object[] toArray()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • toArray

      public <T> T[] toArray(T[] a)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • containsAll

      public boolean containsAll(Collection<?> c)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • intStream

      public IntStream intStream()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      A stream of ints representing the data in this set
      Returns:
      the stream
    • forEach

      public void forEach(IntConsumer action)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      Performs the given action for each int of the IntSet until all elements have been processed or the action throws an exception. Unless otherwise specified by the implementing class, actions are performed in the order of iteration (if an iteration order is specified). Exceptions thrown by the action are relayed to the caller.
      Parameters:
      action - The action to be performed for each element
    • forEach

      public void forEach(Consumer<? super Integer> action)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • intSpliterator

      public Spliterator.OfInt intSpliterator()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      Creates a Spliterator.OfInt over the ints in this set.

      The Spliterator.OfInt reports Spliterator.DISTINCT. Implementations should document the reporting of additional characteristic values.

      Returns:
      a Spliterator.OfInt over the ints in this set
    • toBitSet

      public byte[] toBitSet()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: IntSet
      Returns a byte array that has a bit set for each int in this set where each byte represents 8 numbers. That is if the ints 2, 5 and 9 are set this will return a byte array consisting of 2 bytes in little-endian representation of those values.

      Depending upon the implementation this array may or may not have trailing bytes and may be condensed to save space.

      Returns:
      a byte array containing a little-endian representation of all the ints of this int set as bits
    • add

      public boolean add(int i)
      Description copied from interface: IntSet
      Adds the given int to this set and returns true if it was set or false if it was already present
      Specified by:
      add in interface IntSet
      Parameters:
      i - the int value to add
      Returns:
      whether this int was already present
    • set

      public void set(int i)
      Description copied from interface: IntSet
      Adds or sets the int without returning whether it was previously set
      Specified by:
      set in interface IntSet
      Parameters:
      i - the value to make sure is in the set
    • remove

      public boolean remove(int i)
      Description copied from interface: IntSet
      Removes, if present, the int from the set and returns if it was present or not
      Specified by:
      remove in interface IntSet
      Parameters:
      i - the int to remove
      Returns:
      whether the int was present in the set before it was removed
    • remove

      public boolean remove(Object o)
      Specified by:
      remove in interface Collection<Integer>
      Specified by:
      remove in interface Set<Integer>
    • removeAll

      public boolean removeAll(IntSet set)
      Description copied from interface: IntSet
      Removes all ints from this IntSet that are in the provided IntSet
      Specified by:
      removeAll in interface IntSet
      Parameters:
      set - the ints to remove from this IntSet
      Returns:
      if this set removed any ints
    • removeAll

      public boolean removeAll(Collection<?> c)
      Specified by:
      removeAll in interface Collection<Integer>
      Specified by:
      removeAll in interface Set<Integer>
    • retainAll

      public boolean retainAll(IntSet c)
      Description copied from interface: IntSet
      Modifies this set to remove all ints that are not present in the provided IntSet
      Specified by:
      retainAll in interface IntSet
      Parameters:
      c - the ints this set should kep
      Returns:
      if this set removed any ints
    • retainAll

      public boolean retainAll(Collection<?> c)
      Specified by:
      retainAll in interface Collection<Integer>
      Specified by:
      retainAll in interface Set<Integer>
    • add

      public boolean add(Integer integer)
      Specified by:
      add in interface Collection<Integer>
      Specified by:
      add in interface Set<Integer>
    • addAll

      public boolean addAll(Collection<? extends Integer> c)
      Specified by:
      addAll in interface Collection<Integer>
      Specified by:
      addAll in interface Set<Integer>
    • clear

      public void clear()
      Specified by:
      clear in interface Collection<Integer>
      Specified by:
      clear in interface Set<Integer>
    • removeIf

      public boolean removeIf(Predicate<? super Integer> filter)
      Specified by:
      removeIf in interface Collection<Integer>
    • removeIf

      public boolean removeIf(IntPredicate filter)
      Description copied from interface: IntSet
      Removes all of the ints of this set that satisfy the given predicate. Errors or runtime exceptions thrown during iteration or by the predicate are relayed to the caller.
      Specified by:
      removeIf in interface IntSet
      Parameters:
      filter - a predicate which returns true for ints to be removed
      Returns:
      true if any ints were removed