V
- 存储在地图中的值类型。
public interface ByteObjectMap<V>
extends java.util.Map<java.lang.Byte,V>
byte
作为键的原始映射的接口。
Modifier and Type | Interface and Description |
---|---|
static interface |
ByteObjectMap.PrimitiveEntry<V>
地图中的一个原始条目,由来自
entries() 的迭代器提供
|
V get(byte key)
key
- 要返回关联值的键。
null
。
V put(byte key, V value)
key
- 入门的关键。
value
- 条目的值。
null
。
V remove(byte key)
key
- 从此地图中删除条目的关键。
null
。
java.lang.Iterable<ByteObjectMap.PrimitiveEntry<V>> entries()
Iterator
可能随着Iterator
进展而改变。
调用者不应该依赖ByteObjectMap.PrimitiveEntry
键/值稳定性。
boolean containsKey(byte key)
Copyright © 2008–2018 The Netty Project. All rights reserved.