public interface LongDoubleMap extends DoubleIterable
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(long key) |
boolean |
containsValue(double value) |
boolean |
equals(Object o)
Follows the same general contract as
Map.equals(Object) . |
void |
forEachKey(LongProcedure procedure) |
void |
forEachKeyValue(LongDoubleProcedure procedure) |
void |
forEachValue(DoubleProcedure procedure) |
double |
get(long key) |
double |
getIfAbsent(long key,
double ifAbsent) |
double |
getOrThrow(long key) |
int |
hashCode()
Follows the same general contract as
Map.hashCode() . |
MutableLongSet |
keySet() |
LazyLongIterable |
keysView() |
RichIterable<LongDoublePair> |
keyValuesView() |
LongDoubleMap |
reject(LongDoublePredicate predicate) |
LongDoubleMap |
select(LongDoublePredicate predicate) |
ImmutableLongDoubleMap |
toImmutable() |
String |
toString()
Returns a string representation of this LongDoubleMap.
|
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(long key)
double getIfAbsent(long key, double ifAbsent)
double getOrThrow(long key)
boolean containsKey(long key)
boolean containsValue(double value)
void forEachValue(DoubleProcedure procedure)
void forEachKey(LongProcedure procedure)
void forEachKeyValue(LongDoubleProcedure procedure)
LazyLongIterable keysView()
RichIterable<LongDoublePair> keyValuesView()
LongDoubleMap select(LongDoublePredicate predicate)
LongDoubleMap reject(LongDoublePredicate predicate)
boolean equals(Object o)
Map.equals(Object)
.int hashCode()
Map.hashCode()
.String toString()
toString
in interface PrimitiveIterable
toString
in class Object
ImmutableLongDoubleMap toImmutable()
MutableLongSet keySet()
MutableDoubleCollection values()
Copyright © 2004–2016. All rights reserved.