public interface MutableLongCollection extends LongIterable
Modifier and Type | Method and Description |
---|---|
boolean |
add(long element) |
boolean |
addAll(long... source) |
boolean |
addAll(LongIterable source) |
MutableLongCollection |
asSynchronized() |
MutableLongCollection |
asUnmodifiable() |
void |
clear() |
<V> MutableCollection<V> |
collect(LongToObjectFunction<? extends V> function) |
MutableLongIterator |
longIterator() |
MutableLongCollection |
reject(LongPredicate predicate) |
boolean |
remove(long value) |
boolean |
removeAll(long... source) |
boolean |
removeAll(LongIterable source) |
boolean |
retainAll(long... source) |
boolean |
retainAll(LongIterable elements) |
MutableLongCollection |
select(LongPredicate predicate) |
ImmutableLongCollection |
toImmutable() |
MutableLongCollection |
with(long element) |
MutableLongCollection |
withAll(LongIterable elements) |
MutableLongCollection |
without(long element) |
MutableLongCollection |
withoutAll(LongIterable elements) |
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
MutableLongIterator longIterator()
longIterator
in interface LongIterable
boolean add(long element)
boolean addAll(long... source)
boolean addAll(LongIterable source)
boolean remove(long value)
boolean removeAll(LongIterable source)
boolean removeAll(long... source)
boolean retainAll(LongIterable elements)
Collection.retainAll(Collection)
boolean retainAll(long... source)
Collection.retainAll(Collection)
void clear()
MutableLongCollection select(LongPredicate predicate)
select
in interface LongIterable
MutableLongCollection reject(LongPredicate predicate)
reject
in interface LongIterable
<V> MutableCollection<V> collect(LongToObjectFunction<? extends V> function)
collect
in interface LongIterable
MutableLongCollection with(long element)
MutableLongCollection without(long element)
MutableLongCollection withAll(LongIterable elements)
MutableLongCollection withoutAll(LongIterable elements)
MutableLongCollection asUnmodifiable()
MutableLongCollection asSynchronized()
ImmutableLongCollection toImmutable()
Copyright © 2004–2016. All rights reserved.