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.
Modifier and Type | Method and Description |
---|---|
boolean |
add(long k) |
boolean |
addAll(LongCollection c)
Adds all elements of the given type-specific collection to this collection.
|
void |
clear() |
boolean |
contains(long k) |
boolean |
containsAll(LongCollection c)
Checks whether this collection contains all elements from the given type-specific collection.
|
boolean |
equals(Object o) |
int |
hashCode() |
LongBidirectionalIterator |
iterator()
Returns a type-specific iterator on the elements of this collection.
|
boolean |
rem(long k)
|
boolean |
removeAll(LongCollection c)
Remove from this collection all elements in the given type-specific collection.
|
boolean |
retainAll(LongCollection c)
Retains in this collection only elements from the given type-specific collection.
|
int |
size() |
Object[] |
toArray() |
long[] |
toLongArray()
Returns a primitive type array containing the items of this collection.
|
long[] |
toLongArray(long[] a)
Returns a primitive type array containing the items of this collection.
|
add, addAll, contains, containsAll, isEmpty, longIterator, rem, remove, removeAll, retainAll, toArray, toArray, toString
parallelStream, removeIf, spliterator, stream
public boolean add(long k)
add
in interface LongCollection
add
in class AbstractLongCollection
Collection.add(Object)
public boolean contains(long k)
contains
in interface LongCollection
contains
in class AbstractLongCollection
Collection.contains(Object)
public Object[] toArray()
toArray
in interface Collection<Long>
toArray
in class AbstractLongCollection
public long[] toLongArray(long[] a)
LongCollection
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.
toLongArray
in interface LongCollection
toLongArray
in class AbstractLongCollection
a
- if this array is big enough, it will be used to store this collection.Collection.toArray(Object[])
public long[] toLongArray()
LongCollection
toLongArray
in interface LongCollection
toLongArray
in class AbstractLongCollection
Collection.toArray()
public boolean rem(long k)
LongCollection
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()
.rem
in interface LongCollection
rem
in class AbstractLongCollection
Collection.remove(Object)
public boolean addAll(LongCollection c)
AbstractLongCollection
addAll
in interface LongCollection
addAll
in class AbstractLongCollection
c
- a type-specific collection.true
if this collection changed as a result of the call.Collection.addAll(Collection)
public boolean removeAll(LongCollection c)
AbstractLongCollection
removeAll
in interface LongCollection
removeAll
in class AbstractLongCollection
c
- a type-specific collection.true
if this collection changed as a result of the call.Collection.removeAll(Collection)
public boolean retainAll(LongCollection c)
AbstractLongCollection
retainAll
in interface LongCollection
retainAll
in class AbstractLongCollection
c
- a type-specific collection.true
if this collection changed as a result of the call.Collection.retainAll(Collection)
public boolean containsAll(LongCollection c)
AbstractLongCollection
containsAll
in interface LongCollection
containsAll
in class AbstractLongCollection
c
- a type-specific collection.true
if this collection contains all elements of the argument.Collection.containsAll(Collection)
public LongBidirectionalIterator iterator()
LongCollection
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 extends Collection
.
iterator
in interface LongCollection
iterator
in interface LongIterable
iterator
in interface Iterable<Long>
iterator
in interface Collection<Long>
iterator
in class AbstractLongCollection
public int size()
size
in interface Collection<Long>
size
in class AbstractCollection<Long>
public void clear()
clear
in interface Collection<Long>
clear
in class AbstractCollection<Long>
public int hashCode()
hashCode
in interface Collection<Long>
hashCode
in class Object