public interface ObjectLongMap<K> extends LongIterable
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(Object key) |
boolean |
containsValue(long value) |
void |
forEachKey(Procedure<? super K> procedure) |
void |
forEachKeyValue(ObjectLongProcedure<? super K> procedure) |
void |
forEachValue(LongProcedure procedure) |
long |
get(Object key) |
long |
getIfAbsent(Object key,
long ifAbsent) |
long |
getOrThrow(Object key) |
Set<K> |
keySet() |
LazyIterable<K> |
keysView() |
RichIterable<ObjectLongPair<K>> |
keyValuesView() |
ObjectLongMap<K> |
reject(ObjectLongPredicate<? super K> predicate) |
ObjectLongMap<K> |
select(ObjectLongPredicate<? super K> predicate) |
ImmutableObjectLongMap<K> |
toImmutable() |
String |
toString()
Returns a string representation of this ObjectLongMap.
|
MutableLongCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, collect, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, longIterator, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizelong get(Object key)
long getOrThrow(Object key)
long getIfAbsent(Object key, long ifAbsent)
boolean containsKey(Object key)
boolean containsValue(long value)
void forEachValue(LongProcedure procedure)
void forEachKeyValue(ObjectLongProcedure<? super K> procedure)
ObjectLongMap<K> select(ObjectLongPredicate<? super K> predicate)
ObjectLongMap<K> reject(ObjectLongPredicate<? super K> predicate)
String toString()
toString in interface PrimitiveIterabletoString in class ObjectImmutableObjectLongMap<K> toImmutable()
MutableLongCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectLongPair<K>> keyValuesView()
Copyright © 2004–2017. All rights reserved.