public interface FloatDoubleMap extends DoubleIterable
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(float key) |
boolean |
containsValue(double value) |
boolean |
equals(Object o)
Follows the same general contract as
Map.equals(Object) . |
void |
forEachKey(FloatProcedure procedure) |
void |
forEachKeyValue(FloatDoubleProcedure procedure) |
void |
forEachValue(DoubleProcedure procedure) |
double |
get(float key) |
double |
getIfAbsent(float key,
double ifAbsent) |
double |
getOrThrow(float key) |
int |
hashCode()
Follows the same general contract as
Map.hashCode() . |
MutableFloatSet |
keySet() |
LazyFloatIterable |
keysView() |
RichIterable<FloatDoublePair> |
keyValuesView() |
FloatDoubleMap |
reject(FloatDoublePredicate predicate) |
FloatDoubleMap |
select(FloatDoublePredicate predicate) |
ImmutableFloatDoubleMap |
toImmutable() |
String |
toString()
Returns a string representation of this FloatDoubleMap.
|
MutableDoubleCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, collect, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
double get(float key)
double getIfAbsent(float key, double ifAbsent)
double getOrThrow(float key)
boolean containsKey(float key)
boolean containsValue(double value)
void forEachValue(DoubleProcedure procedure)
void forEachKey(FloatProcedure procedure)
void forEachKeyValue(FloatDoubleProcedure procedure)
LazyFloatIterable keysView()
RichIterable<FloatDoublePair> keyValuesView()
FloatDoubleMap select(FloatDoublePredicate predicate)
FloatDoubleMap reject(FloatDoublePredicate predicate)
boolean equals(Object o)
Map.equals(Object)
.int hashCode()
Map.hashCode()
.String toString()
toString
in interface PrimitiveIterable
toString
in class Object
ImmutableFloatDoubleMap toImmutable()
MutableFloatSet keySet()
MutableDoubleCollection values()
Copyright © 2004–2017. All rights reserved.