Class MapToolkit.IntEntry<K>
- java.lang.Object
-
- org.openjdk.jmc.common.collection.EntryHashMap.Entry<K>
-
- org.openjdk.jmc.common.collection.MapToolkit.IntEntry<K>
-
- Type Parameters:
K- key type
- All Implemented Interfaces:
Comparable<MapToolkit.IntEntry<K>>
- Enclosing class:
- MapToolkit
public static class MapToolkit.IntEntry<K> extends EntryHashMap.Entry<K> implements Comparable<MapToolkit.IntEntry<K>>
A map entry used to store integer values. Used by maps created withMapToolkit.createIntMap(int, float).
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(MapToolkit.IntEntry<K> o)booleanequals(Object obj)intgetValue()Get the entry value.inthashCode()voidsetValue(int value)Set the entry value.-
Methods inherited from class org.openjdk.jmc.common.collection.EntryHashMap.Entry
getKey
-
-
-
-
Method Detail
-
compareTo
public int compareTo(MapToolkit.IntEntry<K> o)
- Specified by:
compareToin interfaceComparable<K>
-
getValue
public int getValue()
Get the entry value.- Returns:
- the value corresponding to this entry
-
setValue
public void setValue(int value)
Set the entry value.- Parameters:
value- the value corresponding to this entry
-
-