@Generated(date="2015-05-05T11:00:03+0200",
value="KTypeVTypeMap.java")
public interface ShortLongMap
extends ShortLongAssociativeContainer
| Modifier and Type | Method and Description |
|---|---|
long |
addTo(short key,
long additionValue)
An equivalent of calling
|
void |
clear()
Clear all keys and values in the container.
|
boolean |
equals(java.lang.Object obj)
Compares the specified object with this set for equality.
|
long |
get(short key) |
long |
getOrDefault(short key,
long defaultValue) |
int |
hashCode() |
boolean |
indexExists(int index) |
long |
indexGet(int index)
Returns the value associated with an existing key.
|
void |
indexInsert(int index,
short key,
long value)
Inserts a key-value pair for a key that is not present in the map.
|
int |
indexOf(short key)
Returns a logical "index" of a given key that can be used to speed up
follow-up value setters or getters in certain scenarios (conditional
logic).
|
long |
indexReplace(int index,
long newValue)
Replaces the value associated with an existing key and returns any previous
value stored for that key.
|
long |
put(short key,
long value)
Place a given key and value in the container.
|
int |
putAll(java.lang.Iterable<? extends ShortLongCursor> iterable)
Puts all keys from an iterable cursor to this map, replacing the values of
existing keys, if such keys are present.
|
int |
putAll(ShortLongAssociativeContainer container)
Puts all keys from another container to this map, replacing the values of
existing keys, if such keys are present.
|
long |
putOrAdd(short key,
long putValue,
long incrementValue)
If
key exists, putValue is inserted into the map,
otherwise any existing value is incremented by additionValue. |
void |
release()
Removes all elements from the collection and additionally releases any
internal buffers.
|
long |
remove(short key)
Remove all values at the given key.
|
long get(short key)
long getOrDefault(short key,
long defaultValue)
long put(short key,
long value)
int putAll(ShortLongAssociativeContainer container)
int putAll(java.lang.Iterable<? extends ShortLongCursor> iterable)
long putOrAdd(short key,
long putValue,
long incrementValue)
key exists, putValue is inserted into the map,
otherwise any existing value is incremented by additionValue.key - The key of the value to adjust.putValue - The value to put if key does not exist.incrementValue - The value to add to the existing value if key exists.key (after
changes).long addTo(short key,
long 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).long remove(short key)
boolean equals(java.lang.Object obj)
ShortLongMap and both objects contains exactly the same key-value
pairs.equals in class java.lang.Objectint hashCode()
hashCode in class java.lang.Objectint indexOf(short key)
key - The key to locate in the map.indexExists(int),
indexGet(int),
indexInsert(int, short, long),
indexReplace(int, long)boolean indexExists(int index)
index - The index of a given key, as returned from indexOf(short).true if the index corresponds to an existing
key or false otherwise. This is equivalent to checking whether the
index is a positive value (existing keys) or a negative value
(non-existing keys).indexOf(short)long indexGet(int index)
index - The index of an existing key.java.lang.AssertionError - If assertions are enabled and the index does not correspond to an
existing key.indexOf(short)long indexReplace(int index,
long newValue)
index - The index of an existing key.java.lang.AssertionError - If assertions are enabled and the index does not correspond to an
existing key.indexOf(short)void indexInsert(int index,
short key,
long value)
index - The index of a previously non-existing key, as returned from
indexOf(short).java.lang.AssertionError - If assertions are enabled and the index corresponds to an
existing key.indexOf(short)void clear()
release()Copyright © 2015 Carrot Search s.c.. All Rights Reserved.