Package org.nd4j.common.collection
Class IntArrayKeyMap<V>
- java.lang.Object
-
- org.nd4j.common.collection.IntArrayKeyMap<V>
-
-
Constructor Summary
Constructors Constructor Description IntArrayKeyMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object o)
boolean
containsValue(Object o)
Set<Map.Entry<int[],V>>
entrySet()
V
get(Object o)
boolean
isEmpty()
Set<int[]>
keySet()
V
put(int[] ints, V v)
void
putAll(Map<? extends int[],? extends V> map)
V
remove(Object o)
int
size()
Collection<V>
values()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(Object o)
- Specified by:
containsKey
in interfaceMap<int[],V>
-
containsValue
public boolean containsValue(Object o)
- Specified by:
containsValue
in interfaceMap<int[],V>
-
values
public Collection<V> values()
-
-