ByteIterable, PrimitiveIterableImmutableObjectByteMap<K>, MutableObjectByteMap<K>AbstractImmutableObjectByteMap, ObjectByteHashMap, ObjectByteHashMapWithHashingStrategy, SynchronizedObjectByteMap, UnmodifiableObjectByteMappublic interface ObjectByteMap<K> extends ByteIterable
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
containsKey(Object key) |
|
boolean |
containsValue(byte value) |
|
ByteObjectMap<K> |
flipUniqueValues() |
Return the ByteObjectMap that is obtained by flipping the direction of this map and making the associations
from value to key.
|
void |
forEachKey(Procedure<? super K> procedure) |
|
void |
forEachKeyValue(ObjectByteProcedure<? super K> procedure) |
|
void |
forEachValue(ByteProcedure procedure) |
|
byte |
get(Object key) |
|
byte |
getIfAbsent(Object key,
byte ifAbsent) |
|
byte |
getOrThrow(Object key) |
|
Set<K> |
keySet() |
|
LazyIterable<K> |
keysView() |
|
RichIterable<ObjectBytePair<K>> |
keyValuesView() |
|
ObjectByteMap<K> |
reject(ObjectBytePredicate<? super K> predicate) |
|
ObjectByteMap<K> |
select(ObjectBytePredicate<? super K> predicate) |
|
default ObjectByteMap<K> |
tap(ByteProcedure procedure) |
|
ImmutableObjectByteMap<K> |
toImmutable() |
|
String |
toString() |
Follows the same general contract as
AbstractMap.toString() |
MutableByteCollection |
values() |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, byteIterator, chunk, collect, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, reject, select, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizebyte get(Object key)
byte getOrThrow(Object key)
byte getIfAbsent(Object key, byte ifAbsent)
boolean containsKey(Object key)
boolean containsValue(byte value)
void forEachValue(ByteProcedure procedure)
void forEachKeyValue(ObjectByteProcedure<? super K> procedure)
ByteObjectMap<K> flipUniqueValues()
IllegalStateException - if the ByteObjectMap contains duplicate values.ObjectByteMap<K> select(ObjectBytePredicate<? super K> predicate)
ObjectByteMap<K> reject(ObjectBytePredicate<? super K> predicate)
default ObjectByteMap<K> tap(ByteProcedure procedure)
tap in interface ByteIterableString toString()
AbstractMap.toString()toString in interface PrimitiveIterabletoString in class ObjectAbstractCollection.toString()ImmutableObjectByteMap<K> toImmutable()
MutableByteCollection values()
LazyIterable<K> keysView()
RichIterable<ObjectBytePair<K>> keyValuesView()
Copyright © 2004–2019. All rights reserved.