FloatIterable, PrimitiveIterableImmutableObjectFloatMap<K>, MutableObjectFloatMap<K>AbstractImmutableObjectFloatMap, ObjectFloatHashMap, ObjectFloatHashMapWithHashingStrategy, SynchronizedObjectFloatMap, UnmodifiableObjectFloatMappublic interface ObjectFloatMap<K> extends FloatIterable
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
containsKey(java.lang.Object key) |
|
boolean |
containsValue(float value) |
|
FloatObjectMap<K> |
flipUniqueValues() |
Return the FloatObjectMap that is obtained by flipping the direction of this map and making the associations
from value to key.
|
void |
forEachKey(Procedure<? super K> procedure) |
|
void |
forEachKeyValue(ObjectFloatProcedure<? super K> procedure) |
|
void |
forEachValue(FloatProcedure procedure) |
|
float |
get(java.lang.Object key) |
|
float |
getIfAbsent(java.lang.Object key,
float ifAbsent) |
|
float |
getOrThrow(java.lang.Object key) |
|
java.util.Set<K> |
keySet() |
|
LazyIterable<K> |
keysView() |
|
RichIterable<ObjectFloatPair<K>> |
keyValuesView() |
|
ObjectFloatMap<K> |
reject(ObjectFloatPredicate<? super K> predicate) |
|
ObjectFloatMap<K> |
select(ObjectFloatPredicate<? super K> predicate) |
|
default ObjectFloatMap<K> |
tap(FloatProcedure procedure) |
|
ImmutableObjectFloatMap<K> |
toImmutable() |
|
java.lang.String |
toString() |
Follows the same general contract as
AbstractMap.toString() |
MutableFloatCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, floatIterator, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, reject, select, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizefloat get(java.lang.Object key)
float getOrThrow(java.lang.Object key)
float getIfAbsent(java.lang.Object key,
float ifAbsent)
boolean containsKey(java.lang.Object key)
boolean containsValue(float value)
void forEachValue(FloatProcedure procedure)
void forEachKeyValue(ObjectFloatProcedure<? super K> procedure)
FloatObjectMap<K> flipUniqueValues()
java.lang.IllegalStateException - if the FloatObjectMap contains duplicate values.ObjectFloatMap<K> select(ObjectFloatPredicate<? super K> predicate)
ObjectFloatMap<K> reject(ObjectFloatPredicate<? super K> predicate)
default ObjectFloatMap<K> tap(FloatProcedure procedure)
tap in interface FloatIterablejava.lang.String toString()
AbstractMap.toString()toString in interface PrimitiveIterabletoString in class java.lang.ObjectAbstractCollection.toString()ImmutableObjectFloatMap<K> toImmutable()
java.util.Set<K> keySet()
MutableFloatCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectFloatPair<K>> keyValuesView()
Copyright © 2004–2017. All rights reserved.