public interface MutableByteCollection extends ByteIterable
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(byte element) |
boolean |
addAll(byte... source) |
boolean |
addAll(ByteIterable source) |
MutableByteCollection |
asSynchronized() |
MutableByteCollection |
asUnmodifiable() |
MutableByteIterator |
byteIterator() |
void |
clear() |
<V> MutableCollection<V> |
collect(ByteToObjectFunction<? extends V> function) |
MutableByteCollection |
reject(BytePredicate predicate) |
boolean |
remove(byte value) |
boolean |
removeAll(byte... source) |
boolean |
removeAll(ByteIterable source) |
boolean |
retainAll(byte... source) |
boolean |
retainAll(ByteIterable elements) |
MutableByteCollection |
select(BytePredicate predicate) |
ImmutableByteCollection |
toImmutable() |
MutableByteCollection |
with(byte element) |
MutableByteCollection |
withAll(ByteIterable elements) |
MutableByteCollection |
without(byte element) |
MutableByteCollection |
withoutAll(ByteIterable 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, toStringMutableByteIterator byteIterator()
byteIterator in interface ByteIterableboolean add(byte element)
boolean addAll(byte... source)
boolean addAll(ByteIterable source)
boolean remove(byte value)
boolean removeAll(ByteIterable source)
boolean removeAll(byte... source)
boolean retainAll(ByteIterable elements)
Collection.retainAll(Collection)boolean retainAll(byte... source)
Collection.retainAll(Collection)void clear()
MutableByteCollection select(BytePredicate predicate)
select in interface ByteIterableMutableByteCollection reject(BytePredicate predicate)
reject in interface ByteIterable<V> MutableCollection<V> collect(ByteToObjectFunction<? extends V> function)
collect in interface ByteIterableMutableByteCollection with(byte element)
MutableByteCollection without(byte element)
MutableByteCollection withAll(ByteIterable elements)
MutableByteCollection withoutAll(ByteIterable elements)
MutableByteCollection asUnmodifiable()
MutableByteCollection asSynchronized()
ImmutableByteCollection toImmutable()
Copyright © 2004–2016. All rights reserved.