public interface MutableByteList extends MutableByteCollection, ByteList
Modifier and Type | Method and Description |
---|---|
boolean |
addAllAtIndex(int index,
byte... source) |
boolean |
addAllAtIndex(int index,
ByteIterable source) |
void |
addAtIndex(int index,
byte element) |
MutableByteList |
asSynchronized() |
MutableByteList |
asUnmodifiable() |
<V> MutableList<V> |
collect(ByteToObjectFunction<? extends V> function) |
MutableByteList |
reject(BytePredicate predicate) |
byte |
removeAtIndex(int index) |
MutableByteList |
reverseThis() |
MutableByteList |
select(BytePredicate predicate) |
byte |
set(int index,
byte element) |
MutableByteList |
sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
MutableByteList |
subList(int fromIndex,
int toIndex) |
ImmutableByteList |
toImmutable()
Returns an immutable copy of this list.
|
MutableByteList |
toReversed() |
MutableByteList |
with(byte element) |
MutableByteList |
withAll(ByteIterable elements) |
MutableByteList |
without(byte element) |
MutableByteList |
withoutAll(ByteIterable elements) |
add, addAll, addAll, clear, remove, removeAll, removeAll, retainAll, retainAll
dotProduct, equals, get, hashCode, lastIndexOf
asReversed, forEachWithIndex, getFirst, getLast, indexOf, injectIntoWithIndex
allSatisfy, anySatisfy, asLazy, average, byteIterator, contains, containsAll, containsAll, count, detectIfNone, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
void addAtIndex(int index, byte element)
boolean addAllAtIndex(int index, byte... source)
boolean addAllAtIndex(int index, ByteIterable source)
byte removeAtIndex(int index)
byte set(int index, byte element)
MutableByteList select(BytePredicate predicate)
select
in interface ByteIterable
select
in interface ByteList
select
in interface MutableByteCollection
select
in interface ReversibleByteIterable
MutableByteList reject(BytePredicate predicate)
reject
in interface ByteIterable
reject
in interface ByteList
reject
in interface MutableByteCollection
reject
in interface ReversibleByteIterable
MutableByteList with(byte element)
with
in interface MutableByteCollection
MutableByteList without(byte element)
without
in interface MutableByteCollection
MutableByteList withAll(ByteIterable elements)
withAll
in interface MutableByteCollection
MutableByteList withoutAll(ByteIterable elements)
withoutAll
in interface MutableByteCollection
<V> MutableList<V> collect(ByteToObjectFunction<? extends V> function)
collect
in interface ByteIterable
collect
in interface ByteList
collect
in interface MutableByteCollection
collect
in interface ReversibleByteIterable
MutableByteList reverseThis()
MutableByteList toReversed()
toReversed
in interface ByteList
toReversed
in interface ReversibleByteIterable
MutableByteList sortThis()
MutableByteList asUnmodifiable()
asUnmodifiable
in interface MutableByteCollection
MutableByteList asSynchronized()
asSynchronized
in interface MutableByteCollection
ImmutableByteList toImmutable()
toImmutable
in interface ByteList
toImmutable
in interface MutableByteCollection
MutableByteList subList(int fromIndex, int toIndex)
Copyright © 2004–2019. All rights reserved.