Interface ShortCollection
- All Superinterfaces:
Collection<Short>
,Iterable<Short>
,ShortIterable
- All Known Subinterfaces:
ShortBigList
,ShortList
,ShortSet
,ShortSortedSet
- All Known Implementing Classes:
AbstractShortBigList
,AbstractShortBigList.ShortRandomAccessSubList
,AbstractShortBigList.ShortSubList
,AbstractShortCollection
,AbstractShortList
,AbstractShortList.ShortRandomAccessSubList
,AbstractShortList.ShortSubList
,AbstractShortSet
,AbstractShortSortedSet
,ShortArrayList
,ShortArraySet
,ShortAVLTreeSet
,ShortBigArrayBigList
,ShortBigLists.EmptyBigList
,ShortBigLists.ListBigList
,ShortBigLists.Singleton
,ShortBigLists.SynchronizedBigList
,ShortBigLists.UnmodifiableBigList
,ShortCollections.EmptyCollection
,ShortCollections.IterableCollection
,ShortImmutableList
,ShortLinkedOpenCustomHashSet
,ShortLinkedOpenHashSet
,ShortLists.EmptyList
,ShortLists.Singleton
,ShortLists.SynchronizedList
,ShortLists.SynchronizedRandomAccessList
,ShortLists.UnmodifiableList
,ShortLists.UnmodifiableRandomAccessList
,ShortMappedBigList
,ShortOpenCustomHashSet
,ShortOpenHashSet
,ShortRBTreeSet
,ShortSets.EmptySet
,ShortSets.Singleton
,ShortSets.SynchronizedSet
,ShortSets.UnmodifiableSet
,ShortSortedSets.EmptySet
,ShortSortedSets.Singleton
,ShortSortedSets.SynchronizedSortedSet
,ShortSortedSets.UnmodifiableSortedSet
Collection
; provides some additional methods that use polymorphism to
avoid (un)boxing.
Additionally, this class defines strengthens (again) iterator()
.
This interface specifies reference equality semantics (members will be compared equal with
==
instead of equals
), which may result in breaks in
contract if attempted to be used with non reference-equality semantics based Collection
s.
For example, a aReferenceCollection.equals(aObjectCollection)
may return different a
different result then aObjectCollection.equals(aReferenceCollection)
, in violation of
equals
's contract requiring it being symmetric.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(short key) Ensures that this collection contains the specified element (optional operation).default boolean
Deprecated.Please use the corresponding type-specific method instead.boolean
Adds all elements of the given type-specific collection to this collection.boolean
contains
(short key) Returnstrue
if this collection contains the specified element.default boolean
Deprecated.Please use the corresponding type-specific method instead.boolean
Checks whether this collection contains all elements from the given type-specific collection.default IntIterator
Returns a widened primitive iterator on the elements of this collection.default IntStream
Return a parallel primitive stream over the elements, performing widening casts if needed.default IntSpliterator
Returns widened primitive spliterator on the elements of this collection.default IntStream
Return a primitive stream over the elements, performing widening casts if needed.iterator()
Returns a type-specific iterator on the elements of this collection.Deprecated.Please use the corresponding type-specific method instead.boolean
rem
(short key) Removes a single instance of the specified element from this collection, if it is present (optional operation).default boolean
Deprecated.Please use (and implement) therem()
method instead.boolean
Remove from this collection all elements in the given type-specific collection.default boolean
removeIf
(ShortPredicate filter) Remove from this collection all elements which satisfy the given predicate.default boolean
removeIf
(IntPredicate filter) Remove from this collection all elements which satisfy the given predicate.default boolean
Deprecated.Please use the corresponding type-specific method instead.boolean
Retains in this collection only elements from the given type-specific collection.default ShortSpliterator
Returns a type-specific spliterator on the elements of this collection.stream()
Deprecated.Please use the corresponding type-specific method instead.short[]
toArray
(short[] a) Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.short[]
Returns a primitive type array containing the items of this collection.default short[]
toShortArray
(short[] a) Deprecated.Please usetoArray()
instead—this method is redundant and will be removed in the future.Methods inherited from interface java.util.Collection
addAll, clear, containsAll, equals, hashCode, isEmpty, removeAll, retainAll, size, toArray, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterable
forEach, forEach, forEach
-
Method Details
-
iterator
ShortIterator iterator()Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceCollection<Short>
- Specified by:
iterator
in interfaceIterable<Short>
- Specified by:
iterator
in interfaceShortIterable
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
- API Notes:
- 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
.
-
intIterator
Returns a widened primitive iterator on the elements of this collection.This method is provided for the purpose of APIs that expect only the JDK's primitive iterators, of which there are only
int
,long
, anddouble
.- Specified by:
intIterator
in interfaceShortIterable
- Returns:
- a widened primitive iterator on the elements of this collection.
- Since:
- 8.5.0
-
spliterator
Returns a type-specific spliterator on the elements of this collection.See
Collection.spliterator()
for more documentation on the requirements of the returned spliterator.- Specified by:
spliterator
in interfaceCollection<Short>
- Specified by:
spliterator
in interfaceIterable<Short>
- Specified by:
spliterator
in interfaceShortIterable
- Returns:
- a type-specific spliterator on the elements of this collection.
- Since:
- 8.5.0
- API Notes:
- This specification strengthens the one given in
Collection.spliterator()
.Also, this is generally the only
spliterator
method subclasses should override. - Implementation Specification:
- The default implementation returns a late-binding spliterator (see
Spliterator
for documentation on what binding policies mean) that wraps this instance's type specificiterator()
.Additionally, it reports
Spliterator.SIZED
- Implementation Notes:
- As this default implementation wraps the iterator, and
Iterator
is an inherently linear API, the returned spliterator will yield limited performance gains when run in parallel contexts, as the returned spliterator'strySplit()
will have linear runtime.
-
intSpliterator
Returns widened primitive spliterator on the elements of this collection.This method is provided for the purpose of APIs that expect only the JDK's primitive spliterators, of which there are only
int
,long
, anddouble
.- Specified by:
intSpliterator
in interfaceShortIterable
- Returns:
- a widened primitive spliterator on the elements of this collection.
- Since:
- 8.5.0
-
add
boolean add(short key) Ensures that this collection contains the specified element (optional operation).- See Also:
-
contains
boolean contains(short key) Returnstrue
if this collection contains the specified element.- See Also:
-
rem
boolean rem(short key) 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 theList
interface forces us to use a distinguished name. For simplicity, the set interfaces reinstatesremove()
.- See Also:
-
add
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
add
in interfaceCollection<Short>
-
contains
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
contains
in interfaceCollection<Short>
-
remove
Deprecated.Please use (and implement) therem()
method instead.- Specified by:
remove
in interfaceCollection<Short>
-
toShortArray
short[] toShortArray()Returns a primitive type array containing the items of this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
toShortArray
Deprecated.Please usetoArray()
instead—this method is redundant and will be removed in the future.Returns a primitive type array containing the items of this collection.Note that, contrarily to
Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.- Parameters:
a
- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
toArray
short[] toArray(short[] a) Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.Note that, contrarily to
Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.- Parameters:
a
- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
addAll
Adds all elements of the given type-specific collection to this collection.- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
containsAll
Checks whether this collection contains all elements from the given type-specific collection.- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
-
removeAll
Remove from this collection all elements in the given type-specific collection.- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
removeIf
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
removeIf
in interfaceCollection<Short>
-
removeIf
Remove from this collection all elements which satisfy the given predicate.- Parameters:
filter
- a predicate which returnstrue
for elements to be removed.- Returns:
true
if any elements were removed.- See Also:
- API Notes:
- Implementing classes should generally override this method, and take the default implementation of the other overloads which will delegate to this method (after proper conversions).
-
removeIf
Remove from this collection all elements which satisfy the given predicate.- Parameters:
filter
- a predicate which returnstrue
for elements to be removed.- Returns:
true
if any elements were removed.- See Also:
- Implementation Notes:
- Unless the argument is type-specific, this method will introduce an intermediary lambda to perform widening casts. Please use the type-specific overload to avoid this overhead.
-
retainAll
Retains in this collection only elements from the given type-specific collection.- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
stream
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
stream
in interfaceCollection<Short>
-
intStream
Return a primitive stream over the elements, performing widening casts if needed.- Returns:
- a primitive stream over the elements.
- See Also:
-
parallelStream
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
parallelStream
in interfaceCollection<Short>
-
intParallelStream
Return a parallel primitive stream over the elements, performing widening casts if needed.- Returns:
- a parallel primitive stream over the elements.
- See Also:
-