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()
Follows the same general contract as
AbstractMap.toString() |
MutableIntCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, intIterator, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, reject, select, select, sum, summaryStatistics, 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()
AbstractMap.toString()toString in interface PrimitiveIterabletoString in class ObjectAbstractCollection.toString()ImmutableObjectIntMap<K> toImmutable()
MutableIntCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectIntPair<K>> keyValuesView()
Copyright © 2004–2017. All rights reserved.