Class LongCollections.EmptyCollection
- All Implemented Interfaces:
LongCollection,LongIterable,Iterable<Long>,Collection<Long>
- Direct Known Subclasses:
LongBigLists.EmptyBigList,LongLists.EmptyList,LongSets.EmptySet
- Enclosing class:
- LongCollections
public abstract static class LongCollections.EmptyCollection extends AbstractLongCollection
This class may be useful to implement your own in case you subclass a type-specific collection.
-
Method Summary
Modifier and Type Method Description booleanaddAll(LongCollection c)Adds all elements of the given type-specific collection to this collection.booleanaddAll(Collection<? extends Long> c)voidclear()booleancontains(long k)Returnstrueif this collection contains the specified element.booleanequals(Object o)inthashCode()LongBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.booleanremoveAll(LongCollection c)Remove from this collection all elements in the given type-specific collection.booleanremoveAll(Collection<?> c)booleanretainAll(LongCollection c)Retains in this collection only elements from the given type-specific collection.booleanretainAll(Collection<?> c)intsize()Object[]toArray()Methods inherited from class it.unimi.dsi.fastutil.longs.AbstractLongCollection
add, add, contains, containsAll, containsAll, rem, remove, toArray, toLongArray, toLongArray, toStringMethods inherited from class java.util.AbstractCollection
isEmpty, toArrayMethods inherited from interface java.util.Collection
isEmpty, parallelStream, spliterator, stream, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.longs.LongCollection
removeIf, removeIfMethods inherited from interface it.unimi.dsi.fastutil.longs.LongIterable
forEach, forEach
-
Method Details
-
contains
public boolean contains(long k)Description copied from class:AbstractLongCollectionReturnstrueif this collection contains the specified element.This implementation iterates over the elements in the collection, looking for the specified element.
- Specified by:
containsin interfaceLongCollection- Overrides:
containsin classAbstractLongCollection- See Also:
Collection.contains(Object)
-
toArray
- Specified by:
toArrayin interfaceCollection<Long>- Overrides:
toArrayin classAbstractCollection<Long>
-
iterator
Description copied from interface:LongCollectionReturns a type-specific iterator on the elements of this collection.Note that this specification strengthens the one given in
Iterable.iterator(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsCollection.- Specified by:
iteratorin interfaceCollection<Long>- Specified by:
iteratorin interfaceIterable<Long>- Specified by:
iteratorin interfaceLongCollection- Specified by:
iteratorin interfaceLongIterable- Specified by:
iteratorin classAbstractLongCollection- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
size
public int size()- Specified by:
sizein interfaceCollection<Long>- Specified by:
sizein classAbstractCollection<Long>
-
clear
public void clear()- Specified by:
clearin interfaceCollection<Long>- Overrides:
clearin classAbstractCollection<Long>
-
hashCode
public int hashCode()- Specified by:
hashCodein interfaceCollection<Long>- Overrides:
hashCodein classObject
-
equals
- Specified by:
equalsin interfaceCollection<Long>- Overrides:
equalsin classObject
-
addAll
Description copied from class:AbstractLongCollectionThis implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection.- Specified by:
addAllin interfaceCollection<Long>- Overrides:
addAllin classAbstractLongCollection
-
removeAll
Description copied from class:AbstractLongCollectionThis implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection.- Specified by:
removeAllin interfaceCollection<Long>- Overrides:
removeAllin classAbstractLongCollection
-
retainAll
Description copied from class:AbstractLongCollectionThis implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from
AbstractCollection.- Specified by:
retainAllin interfaceCollection<Long>- Overrides:
retainAllin classAbstractLongCollection
-
addAll
Description copied from interface:LongCollectionAdds all elements of the given type-specific collection to this collection.- Specified by:
addAllin interfaceLongCollection- Overrides:
addAllin classAbstractLongCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.addAll(Collection)
-
removeAll
Description copied from interface:LongCollectionRemove from this collection all elements in the given type-specific collection.- Specified by:
removeAllin interfaceLongCollection- Overrides:
removeAllin classAbstractLongCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.removeAll(Collection)
-
retainAll
Description copied from interface:LongCollectionRetains in this collection only elements from the given type-specific collection.- Specified by:
retainAllin interfaceLongCollection- Overrides:
retainAllin classAbstractLongCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.retainAll(Collection)
-