Class AbstractIntSet

java.lang.Object
java.util.AbstractCollection<java.lang.Integer>
it.unimi.dsi.fastutil.ints.AbstractIntCollection
it.unimi.dsi.fastutil.ints.AbstractIntSet
All Implemented Interfaces:
IntCollection, IntIterable, IntSet, java.lang.Cloneable, java.lang.Iterable<java.lang.Integer>, java.util.Collection<java.lang.Integer>, java.util.Set<java.lang.Integer>
Direct Known Subclasses:
AbstractIntSortedSet, IntArraySet, IntOpenCustomHashSet, IntOpenHashBigSet, IntOpenHashSet, IntSets.Singleton

public abstract class AbstractIntSet
extends AbstractIntCollection
implements java.lang.Cloneable, IntSet
An abstract class providing basic methods for sets implementing a type-specific interface.

Note that the type-specific Set interface adds a type-specific remove() method, as it is no longer harmful for subclasses. Thus, concrete subclasses of this class must implement remove() (the rem() implementation of this class just delegates to remove()).

  • Method Details

    • iterator

      public abstract IntIterator iterator()
      Description copied from interface: IntCollection
      Returns a type-specific iterator on the elements of this collection.
      Specified by:
      iterator in interface java.util.Collection<java.lang.Integer>
      Specified by:
      iterator in interface IntCollection
      Specified by:
      iterator in interface IntIterable
      Specified by:
      iterator in interface IntSet
      Specified by:
      iterator in interface java.lang.Iterable<java.lang.Integer>
      Specified by:
      iterator in interface java.util.Set<java.lang.Integer>
      Specified by:
      iterator in class AbstractIntCollection
      Returns:
      a type-specific iterator on the elements of this collection.
      See Also:
      Iterable.iterator()
    • equals

      public boolean equals​(java.lang.Object o)
      Specified by:
      equals in interface java.util.Collection<java.lang.Integer>
      Specified by:
      equals in interface java.util.Set<java.lang.Integer>
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Returns a hash code for this set. The hash code of a set is computed by summing the hash codes of its elements.
      Specified by:
      hashCode in interface java.util.Collection<java.lang.Integer>
      Specified by:
      hashCode in interface java.util.Set<java.lang.Integer>
      Overrides:
      hashCode in class java.lang.Object
      Returns:
      a hash code for this set.
    • remove

      public boolean remove​(int k)
      Removes an element from this set. Delegates to the type-specific rem() method implemented by type-specific abstract Collection superclass.
      Specified by:
      remove in interface IntSet
      See Also:
      Collection.remove(Object)
    • rem

      @Deprecated public boolean rem​(int k)
      Deprecated.
      Please use remove() instead.
      Removes a single instance of the specified element from this collection, if it is present (optional operation).

      Note that this method should be called remove(), but the clash with the similarly named index-based method in the List interface forces us to use a distinguished name. For simplicity, the set interfaces reinstates remove(). Delegates to the type-specific remove() method specified in the type-specific Set interface.

      Specified by:
      rem in interface IntCollection
      Specified by:
      rem in interface IntSet
      Overrides:
      rem in class AbstractIntCollection
      See Also:
      Collection.remove(Object)