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, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringMutableLongIterator longIterator()
longIterator in interface LongIterableboolean 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 LongIterableMutableLongCollection reject(LongPredicate predicate)
reject in interface LongIterable<V> MutableCollection<V> collect(LongToObjectFunction<? extends V> function)
collect in interface LongIterableMutableLongCollection with(long element)
MutableLongCollection without(long element)
MutableLongCollection withAll(LongIterable elements)
MutableLongCollection withoutAll(LongIterable elements)
MutableLongCollection asUnmodifiable()
MutableLongCollection asSynchronized()
ImmutableLongCollection toImmutable()
Copyright © 2004–2017. All rights reserved.