Package io.netty.util.concurrent
Class ConcurrentSkipListIntObjMultimap.IntEntry<V>
- java.lang.Object
-
- io.netty.util.concurrent.ConcurrentSkipListIntObjMultimap.IntEntry<V>
-
- All Implemented Interfaces:
java.lang.Comparable<ConcurrentSkipListIntObjMultimap.IntEntry<V>>
- Enclosing class:
- ConcurrentSkipListIntObjMultimap<V>
public static final class ConcurrentSkipListIntObjMultimap.IntEntry<V> extends java.lang.Object implements java.lang.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(java.lang.Object o)intgetKey()Get the corresponding key.VgetValue()Get the corresponding value.inthashCode()java.lang.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.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
compareTo
public int compareTo(ConcurrentSkipListIntObjMultimap.IntEntry<V> o)
- Specified by:
compareToin interfacejava.lang.Comparable<V>
-
-