public interface MutableBooleanCollection extends BooleanIterable
Modifier and Type | Method and Description |
---|---|
boolean |
add(boolean element) |
boolean |
addAll(boolean... source) |
boolean |
addAll(BooleanIterable source) |
MutableBooleanCollection |
asSynchronized() |
MutableBooleanCollection |
asUnmodifiable() |
MutableBooleanIterator |
booleanIterator() |
void |
clear() |
<V> MutableCollection<V> |
collect(BooleanToObjectFunction<? extends V> function) |
MutableBooleanCollection |
reject(BooleanPredicate predicate) |
boolean |
remove(boolean value) |
boolean |
removeAll(boolean... source) |
boolean |
removeAll(BooleanIterable source) |
boolean |
retainAll(boolean... source) |
boolean |
retainAll(BooleanIterable elements) |
MutableBooleanCollection |
select(BooleanPredicate predicate) |
ImmutableBooleanCollection |
toImmutable() |
MutableBooleanCollection |
with(boolean element) |
MutableBooleanCollection |
withAll(BooleanIterable elements) |
MutableBooleanCollection |
without(boolean element) |
MutableBooleanCollection |
withoutAll(BooleanIterable elements) |
allSatisfy, anySatisfy, asLazy, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, noneSatisfy, toArray, toBag, toList, toSet
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
MutableBooleanIterator booleanIterator()
booleanIterator
in interface BooleanIterable
boolean add(boolean element)
boolean addAll(boolean... source)
boolean addAll(BooleanIterable source)
boolean remove(boolean value)
boolean removeAll(BooleanIterable source)
boolean removeAll(boolean... source)
boolean retainAll(BooleanIterable elements)
Collection.retainAll(Collection)
boolean retainAll(boolean... source)
Collection.retainAll(Collection)
void clear()
MutableBooleanCollection select(BooleanPredicate predicate)
select
in interface BooleanIterable
MutableBooleanCollection reject(BooleanPredicate predicate)
reject
in interface BooleanIterable
<V> MutableCollection<V> collect(BooleanToObjectFunction<? extends V> function)
collect
in interface BooleanIterable
MutableBooleanCollection with(boolean element)
MutableBooleanCollection without(boolean element)
MutableBooleanCollection withAll(BooleanIterable elements)
MutableBooleanCollection withoutAll(BooleanIterable elements)
MutableBooleanCollection asUnmodifiable()
MutableBooleanCollection asSynchronized()
ImmutableBooleanCollection toImmutable()
Copyright © 2004–2016. All rights reserved.