CharIterable
, CharSet
, MutableCharCollection
, PrimitiveIterable
AbstractMutableCharKeySet
, CharHashSet
, SynchronizedCharSet
, UnmodifiableCharSet
public interface MutableCharSet extends MutableCharCollection, CharSet
Modifier and Type | Method | Description |
---|---|---|
MutableCharSet |
asSynchronized() |
|
MutableCharSet |
asUnmodifiable() |
|
<V> MutableSet<V> |
collect(CharToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
CharSet |
freeze() |
Returns a frozen copy of this set.
|
MutableCharSet |
reject(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
MutableCharSet |
select(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
ImmutableCharSet |
toImmutable() |
Returns an immutable copy of this set.
|
MutableCharSet |
with(char element) |
|
MutableCharSet |
withAll(CharIterable elements) |
|
MutableCharSet |
without(char element) |
|
MutableCharSet |
withoutAll(CharIterable elements) |
allSatisfy, anySatisfy, asLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
add, addAll, addAll, charIterator, clear, remove, removeAll, removeAll, retainAll, retainAll
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
MutableCharSet select(CharPredicate predicate)
CharIterable
select
in interface CharIterable
select
in interface CharSet
select
in interface MutableCharCollection
MutableCharSet reject(CharPredicate predicate)
CharIterable
reject
in interface CharIterable
reject
in interface CharSet
reject
in interface MutableCharCollection
<V> MutableSet<V> collect(CharToObjectFunction<? extends V> function)
CharIterable
collect
in interface CharIterable
collect
in interface CharSet
collect
in interface MutableCharCollection
MutableCharSet with(char element)
with
in interface MutableCharCollection
MutableCharSet without(char element)
without
in interface MutableCharCollection
MutableCharSet withAll(CharIterable elements)
withAll
in interface MutableCharCollection
MutableCharSet withoutAll(CharIterable elements)
withoutAll
in interface MutableCharCollection
MutableCharSet asUnmodifiable()
asUnmodifiable
in interface MutableCharCollection
MutableCharSet asSynchronized()
asSynchronized
in interface MutableCharCollection
CharSet freeze()
ImmutableCharSet toImmutable()
toImmutable
in interface CharSet
toImmutable
in interface MutableCharCollection
Copyright © 2004–2017. All rights reserved.