Class ShortSets.SynchronizedSet

java.lang.Object
it.unimi.dsi.fastutil.shorts.ShortCollections.SynchronizedCollection
it.unimi.dsi.fastutil.shorts.ShortSets.SynchronizedSet
All Implemented Interfaces:
ShortCollection, ShortIterable, ShortSet, Serializable, Iterable<Short>, Collection<Short>, Set<Short>
Direct Known Subclasses:
ShortSortedSets.SynchronizedSortedSet
Enclosing class:
ShortSets

public static class ShortSets.SynchronizedSet
extends ShortCollections.SynchronizedCollection
implements ShortSet, Serializable
A synchronized wrapper class for sets.
See Also:
Serialized Form
  • Method Details

    • remove

      public boolean remove​(short k)
      Description copied from interface: ShortSet
      Removes an element from this set.

      Note that the corresponding method of a type-specific collection is rem(). This unfortunate situation is caused by the clash with the similarly named index-based method in the List interface.

      Specified by:
      remove in interface ShortSet
      See Also:
      Collection.remove(Object)
    • rem

      @Deprecated public boolean rem​(short k)
      Deprecated.
      Description copied from interface: ShortCollection
      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().

      Specified by:
      rem in interface ShortCollection
      Specified by:
      rem in interface ShortSet
      Overrides:
      rem in class ShortCollections.SynchronizedCollection
      See Also:
      Collection.remove(Object)