DoubleIterable
, PrimitiveIterable
ImmutableObjectDoubleMap<K>
, MutableObjectDoubleMap<K>
AbstractImmutableObjectDoubleMap
, ObjectDoubleHashMap
, ObjectDoubleHashMapWithHashingStrategy
, SynchronizedObjectDoubleMap
, UnmodifiableObjectDoubleMap
public interface ObjectDoubleMap<K> extends DoubleIterable
Modifier and Type | Method | 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() |
Follows the same general contract as
AbstractMap.toString() |
MutableDoubleCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, reject, select, select, sum, summaryStatistics, 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()
AbstractMap.toString()
toString
in interface PrimitiveIterable
toString
in class Object
AbstractCollection.toString()
ImmutableObjectDoubleMap<K> toImmutable()
MutableDoubleCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectDoublePair<K>> keyValuesView()
Copyright © 2004–2017. All rights reserved.