Package it.unimi.dsi.fastutil.objects
Class AbstractReferenceCollection<K>
java.lang.Object
java.util.AbstractCollection<K>
it.unimi.dsi.fastutil.objects.AbstractReferenceCollection<K>
- All Implemented Interfaces:
ObjectIterable<K>,ReferenceCollection<K>,java.lang.Iterable<K>,java.util.Collection<K>
- Direct Known Subclasses:
AbstractReferenceBigList,AbstractReferenceList,AbstractReferenceSet,ReferenceCollections.EmptyCollection,ReferenceCollections.IterableCollection
public abstract class AbstractReferenceCollection<K> extends java.util.AbstractCollection<K> implements ReferenceCollection<K>
An abstract class providing basic methods for collections implementing a
type-specific interface.
In particular, this class provide iterator(), add(),
AbstractCollection.remove(Object) and AbstractCollection.contains(Object) methods that just call
the type-specific counterpart.
Warning: Because of a name clash between the list and
collection interfaces the type-specific deletion method of a type-specific
abstract collection is rem(), rather then remove(). A
subclass must thus override rem(), rather than remove(), to
make all inherited methods work properly.
-
Method Summary
Modifier and Type Method Description abstract ObjectIterator<K>iterator()Returns a type-specific iterator on the elements of this collection.java.lang.StringtoString()Methods inherited from class java.util.AbstractCollection
add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, parallelStream, remove, removeAll, removeIf, retainAll, size, stream, toArray, toArray, toArrayMethods inherited from interface java.lang.Iterable
forEachMethods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceCollection
spliterator
-
Method Details
-
iterator
Description copied from interface:ReferenceCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfacejava.util.Collection<K>- Specified by:
iteratorin interfacejava.lang.Iterable<K>- Specified by:
iteratorin interfaceObjectIterable<K>- Specified by:
iteratorin interfaceReferenceCollection<K>- Specified by:
iteratorin classjava.util.AbstractCollection<K>- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.util.AbstractCollection<K>
-