Package io.netty.util.concurrent
Class ConcurrentSkipListIntObjMultimap.IntEntry<V>
- java.lang.Object
-
- io.netty.util.concurrent.ConcurrentSkipListIntObjMultimap.IntEntry<V>
-
- All Implemented Interfaces:
Comparable<ConcurrentSkipListIntObjMultimap.IntEntry<V>>
- Enclosing class:
- ConcurrentSkipListIntObjMultimap<V>
public static final class ConcurrentSkipListIntObjMultimap.IntEntry<V> extends Object implements Comparable<ConcurrentSkipListIntObjMultimap.IntEntry<V>>
The multimap entry type with primitiveintkeys.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(ConcurrentSkipListIntObjMultimap.IntEntry<V> o)booleanequals(Object o)intgetKey()Get the corresponding key.VgetValue()Get the corresponding value.inthashCode()StringtoString()
-
-
-
Constructor Detail
-
IntEntry
public IntEntry(int key, V value)
-
-
Method Detail
-
getKey
public int getKey()
Get the corresponding key.
-
getValue
public V getValue()
Get the corresponding value.
-
compareTo
public int compareTo(ConcurrentSkipListIntObjMultimap.IntEntry<V> o)
- Specified by:
compareToin interfaceComparable<V>
-
-