Module io.netty5.common
Package io.netty5.util.collection
-
Interface Summary Interface Description ByteObjectMap<V> Interface for a primitive map that usesbyte
s as keys.ByteObjectMap.PrimitiveEntry<V> A primitive entry in the map, provided by the iterator fromByteObjectMap.entries()
CharObjectMap<V> Interface for a primitive map that useschar
s as keys.CharObjectMap.PrimitiveEntry<V> A primitive entry in the map, provided by the iterator fromCharObjectMap.entries()
IntObjectMap<V> Interface for a primitive map that usesint
s as keys.IntObjectMap.PrimitiveEntry<V> A primitive entry in the map, provided by the iterator fromIntObjectMap.entries()
LongObjectMap<V> Interface for a primitive map that useslong
s as keys.LongObjectMap.PrimitiveEntry<V> A primitive entry in the map, provided by the iterator fromLongObjectMap.entries()
ShortObjectMap<V> Interface for a primitive map that usesshort
s as keys.ShortObjectMap.PrimitiveEntry<V> A primitive entry in the map, provided by the iterator fromShortObjectMap.entries()
-
Class Summary Class Description ByteCollections Utilities for byte-based primitive collections.ByteObjectHashMap<V> A hash map implementation ofByteObjectMap
that uses open addressing for keys.CharCollections Utilities for char-based primitive collections.CharObjectHashMap<V> A hash map implementation ofCharObjectMap
that uses open addressing for keys.IntCollections Utilities for int-based primitive collections.IntObjectHashMap<V> A hash map implementation ofIntObjectMap
that uses open addressing for keys.LongCollections Utilities for long-based primitive collections.LongObjectHashMap<V> A hash map implementation ofLongObjectMap
that uses open addressing for keys.ShortCollections Utilities for short-based primitive collections.ShortObjectHashMap<V> A hash map implementation ofShortObjectMap
that uses open addressing for keys.