public interface MutableFloatCollection extends FloatIterable
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(float element) |
boolean |
addAll(float... source) |
boolean |
addAll(FloatIterable source) |
MutableFloatCollection |
asSynchronized() |
MutableFloatCollection |
asUnmodifiable() |
void |
clear() |
<V> MutableCollection<V> |
collect(FloatToObjectFunction<? extends V> function) |
MutableFloatIterator |
floatIterator() |
MutableFloatCollection |
reject(FloatPredicate predicate) |
boolean |
remove(float value) |
boolean |
removeAll(float... source) |
boolean |
removeAll(FloatIterable source) |
boolean |
retainAll(float... source) |
boolean |
retainAll(FloatIterable elements) |
MutableFloatCollection |
select(FloatPredicate predicate) |
ImmutableFloatCollection |
toImmutable() |
MutableFloatCollection |
with(float element) |
MutableFloatCollection |
withAll(FloatIterable elements) |
MutableFloatCollection |
without(float element) |
MutableFloatCollection |
withoutAll(FloatIterable 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, toStringMutableFloatIterator floatIterator()
floatIterator in interface FloatIterableboolean add(float element)
boolean addAll(float... source)
boolean addAll(FloatIterable source)
boolean remove(float value)
boolean removeAll(FloatIterable source)
boolean removeAll(float... source)
boolean retainAll(FloatIterable elements)
Collection.retainAll(Collection)boolean retainAll(float... source)
Collection.retainAll(Collection)void clear()
MutableFloatCollection select(FloatPredicate predicate)
select in interface FloatIterableMutableFloatCollection reject(FloatPredicate predicate)
reject in interface FloatIterable<V> MutableCollection<V> collect(FloatToObjectFunction<? extends V> function)
collect in interface FloatIterableMutableFloatCollection with(float element)
MutableFloatCollection without(float element)
MutableFloatCollection withAll(FloatIterable elements)
MutableFloatCollection withoutAll(FloatIterable elements)
MutableFloatCollection asUnmodifiable()
MutableFloatCollection asSynchronized()
ImmutableFloatCollection toImmutable()
Copyright © 2004–2017. All rights reserved.