public interface FloatValuesMap extends FloatIterable
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
collect(FloatToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
boolean |
containsValue(float value)
Returns whether or not this map contains the value.
|
void |
forEachValue(FloatProcedure procedure)
Iterates through each value in this map.
|
FloatBag |
reject(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that
return false for the specified predicate.
|
FloatBag |
select(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that
return true for the specified predicate.
|
default FloatValuesMap |
tap(FloatProcedure procedure) |
MutableFloatCollection |
values()
Returns the values in this map as a separate collection.
|
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, floatIterator, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListByappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringboolean containsValue(float value)
value - the value to testvoid forEachValue(FloatProcedure procedure)
procedure - the procedure to invoke for each value in this map.MutableFloatCollection values()
FloatBag select(FloatPredicate predicate)
FloatIterableselect in interface FloatIterableFloatBag reject(FloatPredicate predicate)
FloatIterablereject in interface FloatIterabledefault FloatValuesMap tap(FloatProcedure procedure)
tap in interface FloatIterable<V> Bag<V> collect(FloatToObjectFunction<? extends V> function)
FloatIterablecollect in interface FloatIterableCopyright © 2004–2021. All rights reserved.