Interface | Description |
---|---|
ByteObjectMap<V> |
Interface for a primitive map that uses
byte s as keys. |
ByteObjectMap.PrimitiveEntry<V> |
A primitive entry in the map, provided by the iterator from
ByteObjectMap.entries() |
CharObjectMap<V> |
Interface for a primitive map that uses
char s as keys. |
CharObjectMap.PrimitiveEntry<V> |
A primitive entry in the map, provided by the iterator from
CharObjectMap.entries() |
IntObjectMap<V> |
Interface for a primitive map that uses
int s as keys. |
IntObjectMap.PrimitiveEntry<V> |
A primitive entry in the map, provided by the iterator from
IntObjectMap.entries() |
LongObjectMap<V> |
Interface for a primitive map that uses
long s as keys. |
LongObjectMap.PrimitiveEntry<V> |
A primitive entry in the map, provided by the iterator from
LongObjectMap.entries() |
ShortObjectMap<V> |
Interface for a primitive map that uses
short s as keys. |
ShortObjectMap.PrimitiveEntry<V> |
A primitive entry in the map, provided by the iterator from
ShortObjectMap.entries() |
Class | Description |
---|---|
ByteCollections |
Utilities for byte-based primitive collections.
|
ByteCollections.EmptyMap |
An empty map.
|
ByteCollections.UnmodifiableMap<V> |
An unmodifiable wrapper around a
ByteObjectMap . |
ByteObjectHashMap<V> |
A hash map implementation of
ByteObjectMap that uses open addressing for keys. |
CharCollections |
Utilities for char-based primitive collections.
|
CharCollections.EmptyMap |
An empty map.
|
CharCollections.UnmodifiableMap<V> |
An unmodifiable wrapper around a
CharObjectMap . |
CharObjectHashMap<V> |
A hash map implementation of
CharObjectMap that uses open addressing for keys. |
IntCollections |
Utilities for int-based primitive collections.
|
IntCollections.EmptyMap |
An empty map.
|
IntCollections.UnmodifiableMap<V> |
An unmodifiable wrapper around a
IntObjectMap . |
IntObjectHashMap<V> |
A hash map implementation of
IntObjectMap that uses open addressing for keys. |
LongCollections |
Utilities for long-based primitive collections.
|
LongCollections.EmptyMap |
An empty map.
|
LongCollections.UnmodifiableMap<V> |
An unmodifiable wrapper around a
LongObjectMap . |
LongObjectHashMap<V> |
A hash map implementation of
LongObjectMap that uses open addressing for keys. |
ShortCollections |
Utilities for short-based primitive collections.
|
ShortCollections.EmptyMap |
An empty map.
|
ShortCollections.UnmodifiableMap<V> |
An unmodifiable wrapper around a
ShortObjectMap . |
ShortObjectHashMap<V> |
A hash map implementation of
ShortObjectMap that uses open addressing for keys. |