Uses of Interface
io.netty.util.collection.ShortObjectMap
-
Packages that use ShortObjectMap Package Description io.netty.util.collection -
-
Uses of ShortObjectMap in io.netty.util.collection
Classes in io.netty.util.collection that implement ShortObjectMap Modifier and Type Class Description private static class
ShortCollections.EmptyMap
An empty map.private static class
ShortCollections.UnmodifiableMap<V>
An unmodifiable wrapper around aShortObjectMap
.class
ShortObjectHashMap<V>
A hash map implementation ofShortObjectMap
that uses open addressing for keys.Fields in io.netty.util.collection declared as ShortObjectMap Modifier and Type Field Description private static ShortObjectMap<java.lang.Object>
ShortCollections. EMPTY_MAP
private ShortObjectMap<V>
ShortCollections.UnmodifiableMap. map
Methods in io.netty.util.collection that return ShortObjectMap Modifier and Type Method Description static <V> ShortObjectMap<V>
ShortCollections. emptyMap()
Returns an unmodifiable emptyShortObjectMap
.static <V> ShortObjectMap<V>
ShortCollections. unmodifiableMap(ShortObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Methods in io.netty.util.collection with parameters of type ShortObjectMap Modifier and Type Method Description static <V> ShortObjectMap<V>
ShortCollections. unmodifiableMap(ShortObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Constructors in io.netty.util.collection with parameters of type ShortObjectMap Constructor Description UnmodifiableMap(ShortObjectMap<V> map)
-