LongIterable
, PrimitiveIterable
ImmutableObjectLongMap<K>
, MutableObjectLongMap<K>
AbstractImmutableObjectLongMap
, ObjectLongHashMap
, ObjectLongHashMapWithHashingStrategy
, SynchronizedObjectLongMap
, UnmodifiableObjectLongMap
public interface ObjectLongMap<K> extends LongIterable
Modifier and Type | Method | 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() |
Follows the same general contract as
AbstractMap.toString() |
MutableLongCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, longIterator, 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
long 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()
AbstractMap.toString()
toString
in interface PrimitiveIterable
toString
in class Object
AbstractCollection.toString()
ImmutableObjectLongMap<K> toImmutable()
MutableLongCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectLongPair<K>> keyValuesView()
Copyright © 2004–2017. All rights reserved.