public interface LongDoubleMap extends DoubleValuesMap
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(long key) |
boolean |
equals(Object o)
Follows the same general contract as
Map.equals(Object). |
void |
forEachKey(LongProcedure procedure) |
void |
forEachKeyValue(LongDoubleProcedure 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.
|
collect, containsValue, forEachValue, reject, select, valuesallSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizedouble get(long key)
double getIfAbsent(long key,
double ifAbsent)
double getOrThrow(long key)
boolean containsKey(long key)
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 PrimitiveIterabletoString in class ObjectImmutableLongDoubleMap toImmutable()
MutableLongSet keySet()
Copyright © 2004–2016. All rights reserved.