Package | Description |
---|---|
com.esotericsoftware.kryo.util |
Modifier and Type | Field and Description |
---|---|
V |
IntMap.Entry.value |
V |
ObjectMap.Entry.value |
Modifier and Type | Method and Description |
---|---|
K |
ObjectIntMap.findKey(int value)
Returns the key for the specified value, or null if it is not in the map.
|
K |
ObjectMap.findKey(java.lang.Object value,
boolean identity)
Returns the key for the specified value, or null if it is not in the map.
|
<T extends K> |
ObjectMap.get(T key)
Returns the value for the specified key, or null if the key is not in the map.
|
V |
IntMap.Values.next() |
V |
ObjectMap.Values.next() |
V |
IntMap.put(int key,
V value) |
V |
ObjectMap.put(K key,
V value)
Returns the old value associated with the specified key, or null.
|
V |
IntMap.remove(int key) |
V |
ObjectMap.remove(K key) |
Modifier and Type | Method and Description |
---|---|
boolean |
IntMap.containsValue(java.lang.Object value,
boolean identity)
Returns true if the specified value is in the map.
|
boolean |
ObjectMap.containsValue(java.lang.Object value,
boolean identity)
Returns true if the specified value is in the map.
|
boolean |
IntMap.equalsIdentity(java.lang.Object obj)
Uses == for comparison of each value.
|
boolean |
ObjectMap.equalsIdentity(java.lang.Object obj)
Uses == for comparison of each value.
|
K |
ObjectMap.findKey(java.lang.Object value,
boolean identity)
Returns the key for the specified value, or null if it is not in the map.
|
int |
IntMap.findKey(java.lang.Object value,
boolean identity,
int notFound)
Returns the key for the specified value, or notFound if it is not in the map.
|
V |
IntMap.get(int key,
V defaultValue) |
V |
ObjectMap.get(K key,
V defaultValue)
Returns the value for the specified key, or the default value if the key is not in the map.
|
V |
IntMap.put(int key,
V value) |
V |
ObjectMap.put(K key,
V value)
Returns the old value associated with the specified key, or null.
|
Copyright © 2020. All Rights Reserved.