@Generated(date="2015-06-17T12:23:42+0000",
value="HPPC generated from: ShortIntMap.java")
public interface ShortIntMap
extends ShortIntAssociativeContainer
| Modifier and Type | Method and Description |
|---|---|
int |
addTo(short key,
int additionValue)
An equivalent of calling
|
boolean |
equals(java.lang.Object obj)
Compares the specified object with this set for equality.
|
int |
get(short key) |
int |
getOrDefault(short key,
int defaultValue) |
int |
hashCode() |
int |
put(short key,
int value)
Place a given key and value in the container.
|
int |
putAll(java.lang.Iterable<? extends ShortIntCursor> iterable)
Puts all keys from an iterable cursor to this map, replacing the values
of existing keys, if such keys are present.
|
int |
putAll(ShortIntAssociativeContainer container)
Puts all keys from another container to this map, replacing the values
of existing keys, if such keys are present.
|
int |
putOrAdd(short key,
int putValue,
int additionValue)
Trove-inspired API method.
|
int |
remove(short key)
Remove all values at the given key.
|
int put(short key,
int value)
int addTo(short key,
int additionValue)
putOrAdd(key, additionValue, additionValue);
key - The key of the value to adjust.additionValue - The value to put or add to the existing value if key exists.key (after changes).int putOrAdd(short key,
int putValue,
int additionValue)
if (containsKey(key))
{
int v = (int) (lget() + additionValue);
lset(v);
return v;
}
else
{
put(key, putValue);
return putValue;
}
key - The key of the value to adjust.putValue - The value to put if key does not exist.additionValue - The value to add to the existing value if key exists.key (after changes).int get(short key)
int getOrDefault(short key,
int defaultValue)
int putAll(ShortIntAssociativeContainer container)
int putAll(java.lang.Iterable<? extends ShortIntCursor> iterable)
int remove(short key)
boolean equals(java.lang.Object obj)
ShortIntMap and both objects contains exactly the same key-value pairs.equals in class java.lang.Objectint hashCode()
hashCode in class java.lang.ObjectCopyright © 2015 Carrot Search s.c.. All rights reserved.