public interface ObjectDoubleMap<K> extends DoubleIterable
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(Object key) |
boolean |
containsValue(double value) |
void |
forEachKey(Procedure<? super K> procedure) |
void |
forEachKeyValue(ObjectDoubleProcedure<? super K> procedure) |
void |
forEachValue(DoubleProcedure procedure) |
double |
get(Object key) |
double |
getIfAbsent(Object key,
double ifAbsent) |
double |
getOrThrow(Object key) |
Set<K> |
keySet() |
LazyIterable<K> |
keysView() |
RichIterable<ObjectDoublePair<K>> |
keyValuesView() |
ObjectDoubleMap<K> |
reject(ObjectDoublePredicate<? super K> predicate) |
ObjectDoubleMap<K> |
select(ObjectDoublePredicate<? super K> predicate) |
ImmutableObjectDoubleMap<K> |
toImmutable() |
String |
toString()
Returns a string representation of this ObjectDoubleMap.
|
MutableDoubleCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, collect, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, each, 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(Object key)
double getOrThrow(Object key)
double getIfAbsent(Object key, double ifAbsent)
boolean containsKey(Object key)
boolean containsValue(double value)
void forEachValue(DoubleProcedure procedure)
void forEachKeyValue(ObjectDoubleProcedure<? super K> procedure)
ObjectDoubleMap<K> select(ObjectDoublePredicate<? super K> predicate)
ObjectDoubleMap<K> reject(ObjectDoublePredicate<? super K> predicate)
String toString()
toString
in interface PrimitiveIterable
toString
in class Object
ImmutableObjectDoubleMap<K> toImmutable()
MutableDoubleCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectDoublePair<K>> keyValuesView()
Copyright © 2004–2016. All rights reserved.