Package io.netty.util.collection
Interface IntObjectMap.PrimitiveEntry<V>
- Type Parameters:
V
- the value type stored in the map.
- All Known Implementing Classes:
IntCollections.UnmodifiableMap.EntryImpl
,IntObjectHashMap.PrimitiveIterator
- Enclosing interface:
IntObjectMap<V>
public static interface IntObjectMap.PrimitiveEntry<V>
A primitive entry in the map, provided by the iterator from
IntObjectMap.entries()
-
Method Summary
-
Method Details
-
key
int key()Gets the key for this entry. -
value
V value()Gets the value for this entry. -
setValue
Sets the value for this entry.
-