PrimitiveIterable
, ShortIterable
ImmutableObjectShortMap<K>
, MutableObjectShortMap<K>
AbstractImmutableObjectShortMap
, ObjectShortHashMap
, ObjectShortHashMapWithHashingStrategy
, SynchronizedObjectShortMap
, UnmodifiableObjectShortMap
public interface ObjectShortMap<K> extends ShortIterable
Modifier and Type | Method | Description |
---|---|---|
boolean |
containsKey(Object key) |
|
boolean |
containsValue(short value) |
|
void |
forEachKey(Procedure<? super K> procedure) |
|
void |
forEachKeyValue(ObjectShortProcedure<? super K> procedure) |
|
void |
forEachValue(ShortProcedure procedure) |
|
short |
get(Object key) |
|
short |
getIfAbsent(Object key,
short ifAbsent) |
|
short |
getOrThrow(Object key) |
|
Set<K> |
keySet() |
|
LazyIterable<K> |
keysView() |
|
RichIterable<ObjectShortPair<K>> |
keyValuesView() |
|
ObjectShortMap<K> |
reject(ObjectShortPredicate<? super K> predicate) |
|
ObjectShortMap<K> |
select(ObjectShortPredicate<? super K> predicate) |
|
ImmutableObjectShortMap<K> |
toImmutable() |
|
String |
toString() |
Follows the same general contract as
AbstractMap.toString() |
MutableShortCollection |
values() |
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
allSatisfy, anySatisfy, asLazy, average, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, reject, select, select, shortIterator, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
short get(Object key)
short getOrThrow(Object key)
short getIfAbsent(Object key, short ifAbsent)
boolean containsKey(Object key)
boolean containsValue(short value)
void forEachValue(ShortProcedure procedure)
void forEachKeyValue(ObjectShortProcedure<? super K> procedure)
ObjectShortMap<K> select(ObjectShortPredicate<? super K> predicate)
ObjectShortMap<K> reject(ObjectShortPredicate<? super K> predicate)
String toString()
AbstractMap.toString()
toString
in interface PrimitiveIterable
toString
in class Object
AbstractCollection.toString()
ImmutableObjectShortMap<K> toImmutable()
MutableShortCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectShortPair<K>> keyValuesView()
Copyright © 2004–2017. All rights reserved.