public interface MutableCharCollection extends CharIterable
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(char element) |
boolean |
addAll(char... source) |
boolean |
addAll(CharIterable source) |
MutableCharCollection |
asSynchronized() |
MutableCharCollection |
asUnmodifiable() |
MutableCharIterator |
charIterator() |
void |
clear() |
<V> MutableCollection<V> |
collect(CharToObjectFunction<? extends V> function) |
MutableCharCollection |
reject(CharPredicate predicate) |
boolean |
remove(char value) |
boolean |
removeAll(char... source) |
boolean |
removeAll(CharIterable source) |
boolean |
retainAll(char... source) |
boolean |
retainAll(CharIterable elements) |
MutableCharCollection |
select(CharPredicate predicate) |
ImmutableCharCollection |
toImmutable() |
MutableCharCollection |
with(char element) |
MutableCharCollection |
withAll(CharIterable elements) |
MutableCharCollection |
without(char element) |
MutableCharCollection |
withoutAll(CharIterable 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, toStringMutableCharIterator charIterator()
charIterator in interface CharIterableboolean add(char element)
boolean addAll(char... source)
boolean addAll(CharIterable source)
boolean remove(char value)
boolean removeAll(CharIterable source)
boolean removeAll(char... source)
boolean retainAll(CharIterable elements)
Collection.retainAll(Collection)boolean retainAll(char... source)
Collection.retainAll(Collection)void clear()
MutableCharCollection select(CharPredicate predicate)
select in interface CharIterableMutableCharCollection reject(CharPredicate predicate)
reject in interface CharIterable<V> MutableCollection<V> collect(CharToObjectFunction<? extends V> function)
collect in interface CharIterableMutableCharCollection with(char element)
MutableCharCollection without(char element)
MutableCharCollection withAll(CharIterable elements)
MutableCharCollection withoutAll(CharIterable elements)
MutableCharCollection asUnmodifiable()
MutableCharCollection asSynchronized()
ImmutableCharCollection toImmutable()
Copyright © 2004–2017. All rights reserved.