Class AbstractObjectSet<K>

All Implemented Interfaces:
ObjectCollection<K>, ObjectIterable<K>, ObjectSet<K>, Cloneable, Iterable<K>, Collection<K>, Set<K>
Direct Known Subclasses:
AbstractByte2BooleanMap.BasicEntrySet, AbstractByte2ByteMap.BasicEntrySet, AbstractByte2CharMap.BasicEntrySet, AbstractByte2DoubleMap.BasicEntrySet, AbstractByte2FloatMap.BasicEntrySet, AbstractByte2IntMap.BasicEntrySet, AbstractByte2LongMap.BasicEntrySet, AbstractByte2ObjectMap.BasicEntrySet, AbstractByte2ReferenceMap.BasicEntrySet, AbstractByte2ShortMap.BasicEntrySet, AbstractChar2BooleanMap.BasicEntrySet, AbstractChar2ByteMap.BasicEntrySet, AbstractChar2CharMap.BasicEntrySet, AbstractChar2DoubleMap.BasicEntrySet, AbstractChar2FloatMap.BasicEntrySet, AbstractChar2IntMap.BasicEntrySet, AbstractChar2LongMap.BasicEntrySet, AbstractChar2ObjectMap.BasicEntrySet, AbstractChar2ReferenceMap.BasicEntrySet, AbstractChar2ShortMap.BasicEntrySet, AbstractDouble2BooleanMap.BasicEntrySet, AbstractDouble2ByteMap.BasicEntrySet, AbstractDouble2CharMap.BasicEntrySet, AbstractDouble2DoubleMap.BasicEntrySet, AbstractDouble2FloatMap.BasicEntrySet, AbstractDouble2IntMap.BasicEntrySet, AbstractDouble2LongMap.BasicEntrySet, AbstractDouble2ObjectMap.BasicEntrySet, AbstractDouble2ReferenceMap.BasicEntrySet, AbstractDouble2ShortMap.BasicEntrySet, AbstractFloat2BooleanMap.BasicEntrySet, AbstractFloat2ByteMap.BasicEntrySet, AbstractFloat2CharMap.BasicEntrySet, AbstractFloat2DoubleMap.BasicEntrySet, AbstractFloat2FloatMap.BasicEntrySet, AbstractFloat2IntMap.BasicEntrySet, AbstractFloat2LongMap.BasicEntrySet, AbstractFloat2ObjectMap.BasicEntrySet, AbstractFloat2ReferenceMap.BasicEntrySet, AbstractFloat2ShortMap.BasicEntrySet, AbstractInt2BooleanMap.BasicEntrySet, AbstractInt2ByteMap.BasicEntrySet, AbstractInt2CharMap.BasicEntrySet, AbstractInt2DoubleMap.BasicEntrySet, AbstractInt2FloatMap.BasicEntrySet, AbstractInt2IntMap.BasicEntrySet, AbstractInt2LongMap.BasicEntrySet, AbstractInt2ObjectMap.BasicEntrySet, AbstractInt2ReferenceMap.BasicEntrySet, AbstractInt2ShortMap.BasicEntrySet, AbstractLong2BooleanMap.BasicEntrySet, AbstractLong2ByteMap.BasicEntrySet, AbstractLong2CharMap.BasicEntrySet, AbstractLong2DoubleMap.BasicEntrySet, AbstractLong2FloatMap.BasicEntrySet, AbstractLong2IntMap.BasicEntrySet, AbstractLong2LongMap.BasicEntrySet, AbstractLong2ObjectMap.BasicEntrySet, AbstractLong2ReferenceMap.BasicEntrySet, AbstractLong2ShortMap.BasicEntrySet, AbstractObject2BooleanMap.BasicEntrySet, AbstractObject2ByteMap.BasicEntrySet, AbstractObject2CharMap.BasicEntrySet, AbstractObject2DoubleMap.BasicEntrySet, AbstractObject2FloatMap.BasicEntrySet, AbstractObject2IntMap.BasicEntrySet, AbstractObject2LongMap.BasicEntrySet, AbstractObject2ObjectMap.BasicEntrySet, AbstractObject2ReferenceMap.BasicEntrySet, AbstractObject2ShortMap.BasicEntrySet, AbstractObjectSortedSet, AbstractReference2BooleanMap.BasicEntrySet, AbstractReference2ByteMap.BasicEntrySet, AbstractReference2CharMap.BasicEntrySet, AbstractReference2DoubleMap.BasicEntrySet, AbstractReference2FloatMap.BasicEntrySet, AbstractReference2IntMap.BasicEntrySet, AbstractReference2LongMap.BasicEntrySet, AbstractReference2ObjectMap.BasicEntrySet, AbstractReference2ReferenceMap.BasicEntrySet, AbstractReference2ShortMap.BasicEntrySet, AbstractShort2BooleanMap.BasicEntrySet, AbstractShort2ByteMap.BasicEntrySet, AbstractShort2CharMap.BasicEntrySet, AbstractShort2DoubleMap.BasicEntrySet, AbstractShort2FloatMap.BasicEntrySet, AbstractShort2IntMap.BasicEntrySet, AbstractShort2LongMap.BasicEntrySet, AbstractShort2ObjectMap.BasicEntrySet, AbstractShort2ReferenceMap.BasicEntrySet, AbstractShort2ShortMap.BasicEntrySet, ObjectArraySet, ObjectOpenCustomHashSet, ObjectOpenHashBigSet, ObjectOpenHashSet, ObjectSets.Singleton

public abstract class AbstractObjectSet<K> extends AbstractObjectCollection<K> implements Cloneable, ObjectSet<K>
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()).