Uses of Class
com.esotericsoftware.kryo.util.Null
-
Packages that use Null Package Description com.esotericsoftware.kryo.util -
-
Uses of Null in com.esotericsoftware.kryo.util
Fields in com.esotericsoftware.kryo.util with annotations of type Null Modifier and Type Field Description V
IntMap.Entry. value
V
ObjectMap.Entry. value
Methods in com.esotericsoftware.kryo.util with annotations of type Null Modifier and Type Method 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>
VObjectMap. 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)
Method parameters in com.esotericsoftware.kryo.util with annotations of type Null Modifier and Type Method 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.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.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.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.
-