public interface ObjectIntMap<K> extends IntIterable
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(Object key) |
boolean |
containsValue(int value) |
void |
forEachKey(Procedure<? super K> procedure) |
void |
forEachKeyValue(ObjectIntProcedure<? super K> procedure) |
void |
forEachValue(IntProcedure procedure) |
int |
get(Object key) |
int |
getIfAbsent(Object key,
int ifAbsent) |
int |
getOrThrow(Object key) |
Set<K> |
keySet() |
LazyIterable<K> |
keysView() |
RichIterable<ObjectIntPair<K>> |
keyValuesView() |
ObjectIntMap<K> |
reject(ObjectIntPredicate<? super K> predicate) |
ObjectIntMap<K> |
select(ObjectIntPredicate<? super K> predicate) |
ImmutableObjectIntMap<K> |
toImmutable() |
String |
toString()
Returns a string representation of this ObjectIntMap.
|
MutableIntCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, collect, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, intIterator, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizeint get(Object key)
int getOrThrow(Object key)
int getIfAbsent(Object key, int ifAbsent)
boolean containsKey(Object key)
boolean containsValue(int value)
void forEachValue(IntProcedure procedure)
void forEachKeyValue(ObjectIntProcedure<? super K> procedure)
ObjectIntMap<K> select(ObjectIntPredicate<? super K> predicate)
ObjectIntMap<K> reject(ObjectIntPredicate<? super K> predicate)
String toString()
toString in interface PrimitiveIterabletoString in class ObjectImmutableObjectIntMap<K> toImmutable()
MutableIntCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectIntPair<K>> keyValuesView()
Copyright © 2004–2017. All rights reserved.