Package it.unimi.dsi.fastutil.longs
Class AbstractLong2ObjectMap.BasicEntry<V>
- java.lang.Object
-
- it.unimi.dsi.fastutil.longs.AbstractLong2ObjectMap.BasicEntry<V>
-
- All Implemented Interfaces:
Long2ObjectMap.Entry<V>
,Map.Entry<Long,V>
- Enclosing class:
- AbstractLong2ObjectMap<V>
public static class AbstractLong2ObjectMap.BasicEntry<V> extends Object implements Long2ObjectMap.Entry<V>
This class provides a basic but complete type-specific entry class for all those maps implementations that do not have entries on their own (e.g., most immutable maps).This class does not implement
setValue()
, as the modification would not be reflected in the base map.
-
-
Constructor Summary
Constructors Constructor Description BasicEntry()
BasicEntry(long key, V value)
BasicEntry(Long key, V value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
long
getLongKey()
Returns the key corresponding to this entry.V
getValue()
int
hashCode()
V
setValue(V value)
String
toString()
-
Methods inherited from interface it.unimi.dsi.fastutil.longs.Long2ObjectMap.Entry
getKey
-
-
-
-
Method Detail
-
getLongKey
public long getLongKey()
Description copied from interface:Long2ObjectMap.Entry
Returns the key corresponding to this entry.- Specified by:
getLongKey
in interfaceLong2ObjectMap.Entry<V>
- See Also:
Map.Entry.getKey()
-
equals
public boolean equals(Object o)
-
hashCode
public int hashCode()
-
-