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)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
MutableByteList |
distinct() |
MutableByteList |
reject(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that
return false for the specified predicate.
|
byte |
removeAtIndex(int index) |
MutableByteList |
reverseThis() |
MutableByteList |
select(BytePredicate predicate)
Returns a new ByteIterable with all of the elements in the ByteIterable that
return true for the specified 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) |
default MutableByteList |
tap(ByteProcedure procedure) |
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, byteIterator, clear, remove, removeAll, removeAll, retainAll, retainAllbinarySearch, dotProduct, equals, get, hashCode, lastIndexOfasReversed, getLast, injectIntoWithIndexforEachWithIndex, getFirst, indexOfallSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringvoid 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)
ByteIterableselect in interface ByteIterableselect in interface ByteListselect in interface MutableByteCollectionselect in interface OrderedByteIterableselect in interface ReversibleByteIterableMutableByteList reject(BytePredicate predicate)
ByteIterablereject in interface ByteIterablereject in interface ByteListreject in interface MutableByteCollectionreject in interface OrderedByteIterablereject in interface ReversibleByteIterableMutableByteList with(byte element)
with in interface MutableByteCollectionMutableByteList without(byte element)
without in interface MutableByteCollectionMutableByteList withAll(ByteIterable elements)
withAll in interface MutableByteCollectionMutableByteList withoutAll(ByteIterable elements)
withoutAll in interface MutableByteCollectiondefault MutableByteList tap(ByteProcedure procedure)
tap in interface ByteIterabletap in interface ByteListtap in interface MutableByteCollection<V> MutableList<V> collect(ByteToObjectFunction<? extends V> function)
ByteIterablecollect in interface ByteIterablecollect in interface ByteListcollect in interface MutableByteCollectioncollect in interface OrderedByteIterablecollect in interface ReversibleByteIterableMutableByteList reverseThis()
MutableByteList toReversed()
toReversed in interface ByteListtoReversed in interface ReversibleByteIterableMutableByteList distinct()
distinct in interface ByteListdistinct in interface ReversibleByteIterableMutableByteList sortThis()
MutableByteList asUnmodifiable()
asUnmodifiable in interface MutableByteCollectionMutableByteList asSynchronized()
asSynchronized in interface MutableByteCollectionImmutableByteList toImmutable()
toImmutable in interface ByteListtoImmutable in interface MutableByteCollectionMutableByteList subList(int fromIndex, int toIndex)
subList in interface ByteListList.subList(int fromIndex, int toIndex)Copyright © 2004–2017. All rights reserved.