public abstract class AbstractShort2ByteMap extends java.util.AbstractMap<java.lang.Short,java.lang.Byte> implements Short2ByteMap
| Modifier and Type | Class and Description |
|---|---|
static class |
AbstractShort2ByteMap.BasicEntry
A Simple Type Specific Entry class to reduce boxing/unboxing
|
java.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>Short2ByteMap.Entry, Short2ByteMap.FastEntrySet| Constructor and Description |
|---|
AbstractShort2ByteMap() |
| Modifier and Type | Method and Description |
|---|---|
void |
addToAll(Short2ByteMap m)
A Helper method to bulk add primitives together.
|
byte |
computeByte(short key,
ShortByteUnaryOperator mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
byte |
computeByteIfAbsent(short key,
Short2ByteFunction mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
byte |
computeByteIfPresent(short key,
ShortByteUnaryOperator mappingFunction)
A Type Specific compute method to reduce boxing/unboxing
|
boolean |
containsKey(short key)
Type Specific method to reduce boxing/unboxing of values
|
boolean |
containsValue(byte value)
Type Specific method to reduce boxing/unboxing of values
|
ObjectSet<java.util.Map.Entry<java.lang.Short,java.lang.Byte>> |
entrySet() |
boolean |
equals(java.lang.Object o) |
void |
forEach(ShortByteConsumer action)
Type Specific forEach method to reduce boxing/unboxing
|
java.lang.Byte |
get(java.lang.Object key) |
byte |
getDefaultReturnValue()
Method to see what the default return value is.
|
java.lang.Byte |
getOrDefault(java.lang.Object key,
java.lang.Byte defaultValue) |
byte |
getOrDefault(short key,
byte defaultValue)
A Type Specific getOrDefault method to reduce boxing/unboxing
|
int |
hashCode() |
ShortSet |
keySet() |
void |
mergeAllByte(Short2ByteMap m,
ByteByteUnaryOperator mappingFunction)
A Bulk method for merging Maps.
|
byte |
mergeByte(short key,
byte value,
ByteByteUnaryOperator mappingFunction)
A Type Specific merge method to reduce boxing/unboxing
|
void |
putAll(java.util.Map<? extends java.lang.Short,? extends java.lang.Byte> m) |
void |
putAll(short[] keys,
byte[] values,
int offset,
int size)
Type Specific array method to bulk add elements into a map without creating a wrapper and increasing performances
|
void |
putAll(Short2ByteMap m)
Type Specific function for the bull putting of values
|
void |
putAllIfAbsent(Short2ByteMap m)
Type-Specific bulk put method put elements into the map if not present.
|
byte |
replace(short key,
byte value)
A Type Specific replace method to reduce boxing/unboxing replace an existing value
|
boolean |
replace(short key,
byte oldValue,
byte newValue)
A Type Specific replace method to replace an existing value
|
void |
replaceBytes(Short2ByteMap m)
Type-Specific bulk replace method.
|
void |
replaceBytes(ShortByteUnaryOperator mappingFunction)
A Type Specific mass replace method to reduce boxing/unboxing
|
AbstractShort2ByteMap |
setDefaultReturnValue(byte v)
Method to define the default return value if a requested key isn't present
|
ByteCollection |
values() |
clear, containsKey, containsValue, isEmpty, put, remove, size, toStringaddTo, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, forEach, getByte, merge, put, put, putAll, putIfAbsent, putIfAbsent, remove, remove, remove, remShort, remShortOrDefault, replace, replace, replaceAll, short2ByteEntrySetpublic byte getDefaultReturnValue()
Short2ByteMapgetDefaultReturnValue in interface Short2ByteMappublic AbstractShort2ByteMap setDefaultReturnValue(byte v)
Short2ByteMapsetDefaultReturnValue in interface Short2ByteMapv - value that should be the default return valuepublic void addToAll(Short2ByteMap m)
Short2ByteMapaddToAll in interface Short2ByteMapm - the values that should be added/insertedpublic void putAll(Short2ByteMap m)
Short2ByteMapputAll in interface Short2ByteMapm - the elements that should be insertedpublic void putAll(java.util.Map<? extends java.lang.Short,? extends java.lang.Byte> m)
putAll in interface java.util.Map<java.lang.Short,java.lang.Byte>putAll in class java.util.AbstractMap<java.lang.Short,java.lang.Byte>public void putAll(short[] keys,
byte[] values,
int offset,
int size)
Short2ByteMapputAll in interface Short2ByteMapkeys - the keys that should be addedvalues - the values that should be addedoffset - where the to start in the arraysize - how many elements should be addedMap.putAll(Map)public void putAllIfAbsent(Short2ByteMap m)
Short2ByteMapputAllIfAbsent in interface Short2ByteMapm - elements that should be added if not present.public boolean containsKey(short key)
Short2ByteMapcontainsKey in interface Short2ByteMapkey - element that is searched forpublic boolean containsValue(byte value)
Short2ByteMapcontainsValue in interface Short2ByteMapvalue - element that is searched forpublic boolean replace(short key,
byte oldValue,
byte newValue)
Short2ByteMapreplace in interface Short2ByteMapkey - the element that should be searched foroldValue - the expected value to be replacednewValue - the value to replace the oldValue with.public byte replace(short key,
byte value)
Short2ByteMapreplace in interface Short2ByteMapkey - the element that should be searched forvalue - the value to replace with.public void replaceBytes(Short2ByteMap m)
Short2ByteMapreplaceBytes in interface Short2ByteMapm - elements that should be replaced.public void replaceBytes(ShortByteUnaryOperator mappingFunction)
Short2ByteMapreplaceBytes in interface Short2ByteMapmappingFunction - operation to replace all valuespublic byte computeByte(short key,
ShortByteUnaryOperator mappingFunction)
Short2ByteMapcomputeByte in interface Short2ByteMapkey - the key that should be computedmappingFunction - the operator that should generate the valuepublic byte computeByteIfAbsent(short key,
Short2ByteFunction mappingFunction)
Short2ByteMapcomputeByteIfAbsent in interface Short2ByteMapkey - the key that should be computedmappingFunction - the operator that should generate the value if not presentpublic byte computeByteIfPresent(short key,
ShortByteUnaryOperator mappingFunction)
Short2ByteMapcomputeByteIfPresent in interface Short2ByteMapkey - the key that should be computedmappingFunction - the operator that should generate the value if presentpublic byte mergeByte(short key,
byte value,
ByteByteUnaryOperator mappingFunction)
Short2ByteMapmergeByte in interface Short2ByteMapkey - the key that should be be searched forvalue - the value that should be merged withmappingFunction - the operator that should generate the new Valuepublic void mergeAllByte(Short2ByteMap m, ByteByteUnaryOperator mappingFunction)
Short2ByteMapmergeAllByte in interface Short2ByteMapm - the entries that should be bulk addedmappingFunction - the operator that should generate the new Valuepublic java.lang.Byte get(java.lang.Object key)
get in interface java.util.Map<java.lang.Short,java.lang.Byte>get in interface Short2ByteMapget in class java.util.AbstractMap<java.lang.Short,java.lang.Byte>public java.lang.Byte getOrDefault(java.lang.Object key,
java.lang.Byte defaultValue)
getOrDefault in interface java.util.Map<java.lang.Short,java.lang.Byte>getOrDefault in interface Short2ByteMappublic byte getOrDefault(short key,
byte defaultValue)
Short2ByteMapgetOrDefault in interface Short2ByteMapkey - the key that is searched fordefaultValue - the value that should be returned if the key is not presentpublic void forEach(ShortByteConsumer action)
Short2ByteMapforEach in interface Short2ByteMapaction - processor of the values that are iterator overpublic ShortSet keySet()
keySet in interface java.util.Map<java.lang.Short,java.lang.Byte>keySet in interface Short2ByteMapkeySet in class java.util.AbstractMap<java.lang.Short,java.lang.Byte>public ByteCollection values()
values in interface java.util.Map<java.lang.Short,java.lang.Byte>values in interface Short2ByteMapvalues in class java.util.AbstractMap<java.lang.Short,java.lang.Byte>public ObjectSet<java.util.Map.Entry<java.lang.Short,java.lang.Byte>> entrySet()
entrySet in interface java.util.Map<java.lang.Short,java.lang.Byte>entrySet in interface Short2ByteMapentrySet in class java.util.AbstractMap<java.lang.Short,java.lang.Byte>public boolean equals(java.lang.Object o)
equals in interface java.util.Map<java.lang.Short,java.lang.Byte>equals in class java.util.AbstractMap<java.lang.Short,java.lang.Byte>public int hashCode()
hashCode in interface java.util.Map<java.lang.Short,java.lang.Byte>hashCode in class java.util.AbstractMap<java.lang.Short,java.lang.Byte>