public interface MutableIntCollection extends IntIterable
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(int element) |
boolean |
addAll(int... source) |
boolean |
addAll(IntIterable source) |
MutableIntCollection |
asSynchronized() |
MutableIntCollection |
asUnmodifiable() |
void |
clear() |
<V> MutableCollection<V> |
collect(IntToObjectFunction<? extends V> function) |
MutableIntIterator |
intIterator() |
MutableIntCollection |
reject(IntPredicate predicate) |
boolean |
remove(int value) |
boolean |
removeAll(int... source) |
boolean |
removeAll(IntIterable source) |
boolean |
retainAll(int... source) |
boolean |
retainAll(IntIterable elements) |
MutableIntCollection |
select(IntPredicate predicate) |
ImmutableIntCollection |
toImmutable() |
MutableIntCollection |
with(int element) |
MutableIntCollection |
withAll(IntIterable elements) |
MutableIntCollection |
without(int element) |
MutableIntCollection |
withoutAll(IntIterable 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, toStringMutableIntIterator intIterator()
intIterator in interface IntIterableboolean add(int element)
boolean addAll(int... source)
boolean addAll(IntIterable source)
boolean remove(int value)
boolean removeAll(IntIterable source)
boolean removeAll(int... source)
boolean retainAll(IntIterable elements)
Collection.retainAll(Collection)boolean retainAll(int... source)
Collection.retainAll(Collection)void clear()
MutableIntCollection select(IntPredicate predicate)
select in interface IntIterableMutableIntCollection reject(IntPredicate predicate)
reject in interface IntIterable<V> MutableCollection<V> collect(IntToObjectFunction<? extends V> function)
collect in interface IntIterableMutableIntCollection with(int element)
MutableIntCollection without(int element)
MutableIntCollection withAll(IntIterable elements)
MutableIntCollection withoutAll(IntIterable elements)
MutableIntCollection asUnmodifiable()
MutableIntCollection asSynchronized()
ImmutableIntCollection toImmutable()
Copyright © 2004–2017. All rights reserved.