Uses of Interface
org.hsqldb.lib.Map
-
Packages that use Map Package Description org.hsqldb.lib Contains shared classes used by other HyperSQL classes. -
-
Uses of Map in org.hsqldb.lib
Classes in org.hsqldb.lib that implement Map Modifier and Type Class Description classHashMap<K,V>This class does not store null keys.classIntKeyHashMap<V>A Map of int primitives to Object values.classIntKeyHashMapConcurrent<V>A Map of int primitives to Object values, suitable for thread-safe access.classIntKeyIntValueHashMapA Map of int primitive keys to int primitive values.classIntKeyLongValueHashMapA Map of int primitive keys to long primitive values.classLongKeyHashMap<V>A Map of long primitives to Object values.classLongKeyIntValueHashMapA Map of long primitives to int primitives.classLongKeyLongValueHashMapA Map of long primitives to to long primitive.classMultiValueHashMap<K,V>A Map of Object keys to Object values which stores multiple values per key.classOrderedHashMap<K,V>A Map which maintains the insertion order of the key/value pairs and allows access by index.classOrderedIntKeyHashMap<V>A Map of int primitives to Object values which maintains the insertion order of the key/value pairs and allows access by index.classOrderedLongKeyHashMap<V>A Map of long primitives to Object values which maintains the insertion order of the key/value pairs and allows access by index.Methods in org.hsqldb.lib with parameters of type Map Modifier and Type Method Description voidHashMap. putAll(Map<? extends K,? extends V> m)voidIntKeyHashMap. putAll(Map<? extends java.lang.Integer,? extends V> other)voidIntKeyHashMapConcurrent. putAll(Map<? extends java.lang.Integer,? extends V> other)voidIntKeyIntValueHashMap. putAll(Map<? extends java.lang.Integer,? extends java.lang.Integer> other)voidIntKeyLongValueHashMap. putAll(Map<? extends java.lang.Integer,? extends java.lang.Long> other)voidIntValueHashMap. putAll(Map<? extends K,? extends java.lang.Integer> other)voidLongKeyHashMap. putAll(Map<? extends java.lang.Long,? extends V> other)voidLongKeyIntValueHashMap. putAll(Map<? extends java.lang.Long,? extends java.lang.Integer> other)voidLongKeyLongValueHashMap. putAll(Map<? extends java.lang.Long,? extends java.lang.Long> other)voidMap. putAll(Map<? extends K,? extends V> m)voidMultiValueHashMap. putAll(Map<? extends K,? extends V> m)voidOrderedLongKeyHashMap. putAll(Map<? extends java.lang.Long,? extends V> other)
-