Uses of Interface
io.netty.util.collection.CharObjectMap
-
Packages that use CharObjectMap Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.util.collection -
-
Uses of CharObjectMap in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement CharObjectMap Modifier and Type Class Description class
Http2Settings
Settings for one endpoint in an HTTP/2 connection. -
Uses of CharObjectMap in io.netty.util.collection
Classes in io.netty.util.collection that implement CharObjectMap Modifier and Type Class Description private static class
CharCollections.EmptyMap
An empty map.private static class
CharCollections.UnmodifiableMap<V>
An unmodifiable wrapper around aCharObjectMap
.class
CharObjectHashMap<V>
A hash map implementation ofCharObjectMap
that uses open addressing for keys.Fields in io.netty.util.collection declared as CharObjectMap Modifier and Type Field Description private static CharObjectMap<java.lang.Object>
CharCollections. EMPTY_MAP
private CharObjectMap<V>
CharCollections.UnmodifiableMap. map
Methods in io.netty.util.collection that return CharObjectMap Modifier and Type Method Description static <V> CharObjectMap<V>
CharCollections. emptyMap()
Returns an unmodifiable emptyCharObjectMap
.static <V> CharObjectMap<V>
CharCollections. unmodifiableMap(CharObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Methods in io.netty.util.collection with parameters of type CharObjectMap Modifier and Type Method Description static <V> CharObjectMap<V>
CharCollections. unmodifiableMap(CharObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.Constructors in io.netty.util.collection with parameters of type CharObjectMap Constructor Description UnmodifiableMap(CharObjectMap<V> map)
-