public interface MutableCharList extends MutableCharCollection, CharList
| Modifier and Type | Method and Description |
|---|---|
boolean |
addAllAtIndex(int index,
char... source) |
boolean |
addAllAtIndex(int index,
CharIterable source) |
void |
addAtIndex(int index,
char element) |
MutableCharList |
asSynchronized() |
MutableCharList |
asUnmodifiable() |
<V> MutableList<V> |
collect(CharToObjectFunction<? extends V> function) |
MutableCharList |
reject(CharPredicate predicate) |
char |
removeAtIndex(int index) |
MutableCharList |
reverseThis() |
MutableCharList |
select(CharPredicate predicate) |
char |
set(int index,
char element) |
MutableCharList |
sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
MutableCharList |
subList(int fromIndex,
int toIndex) |
ImmutableCharList |
toImmutable()
Returns an immutable copy of this list.
|
MutableCharList |
toReversed() |
MutableCharList |
with(char element) |
MutableCharList |
withAll(CharIterable elements) |
MutableCharList |
without(char element) |
MutableCharList |
withoutAll(CharIterable elements) |
add, addAll, addAll, clear, remove, removeAll, removeAll, retainAll, retainAlldotProduct, equals, get, hashCode, lastIndexOfasReversed, forEachWithIndex, getFirst, getLast, indexOf, injectIntoWithIndexallSatisfy, anySatisfy, asLazy, average, charIterator, contains, containsAll, containsAll, count, detectIfNone, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringvoid addAtIndex(int index,
char element)
boolean addAllAtIndex(int index,
char... source)
boolean addAllAtIndex(int index,
CharIterable source)
char removeAtIndex(int index)
char set(int index,
char element)
MutableCharList select(CharPredicate predicate)
select in interface CharIterableselect in interface CharListselect in interface MutableCharCollectionselect in interface ReversibleCharIterableMutableCharList reject(CharPredicate predicate)
reject in interface CharIterablereject in interface CharListreject in interface MutableCharCollectionreject in interface ReversibleCharIterableMutableCharList with(char element)
with in interface MutableCharCollectionMutableCharList without(char element)
without in interface MutableCharCollectionMutableCharList withAll(CharIterable elements)
withAll in interface MutableCharCollectionMutableCharList withoutAll(CharIterable elements)
withoutAll in interface MutableCharCollection<V> MutableList<V> collect(CharToObjectFunction<? extends V> function)
collect in interface CharIterablecollect in interface CharListcollect in interface MutableCharCollectioncollect in interface ReversibleCharIterableMutableCharList reverseThis()
MutableCharList toReversed()
toReversed in interface CharListtoReversed in interface ReversibleCharIterableMutableCharList sortThis()
MutableCharList asUnmodifiable()
asUnmodifiable in interface MutableCharCollectionMutableCharList asSynchronized()
asSynchronized in interface MutableCharCollectionImmutableCharList toImmutable()
toImmutable in interface CharListtoImmutable in interface MutableCharCollectionMutableCharList subList(int fromIndex, int toIndex)
Copyright © 2004–2017. All rights reserved.