Package it.unimi.dsi.fastutil.ints
Interface Int2IntMap.Entry
-
- All Known Implementing Classes:
AbstractInt2IntMap.BasicEntry
- Enclosing interface:
- Int2IntMap
public static interface Int2IntMap.Entry extends Map.Entry<Integer,Integer>
A type-specificMap.Entry; provides some additional methods that use polymorphism to avoid (un)boxing.- See Also:
Map.Entry
-
-
Method Summary
Modifier and Type Method Description intgetIntKey()Returns the key corresponding to this entry.intgetIntValue()Returns the value corresponding to this entry.default IntegergetKey()Deprecated.Please use the corresponding type-specific method instead.default IntegergetValue()Deprecated.Please use the corresponding type-specific method instead.intsetValue(int value)Replaces the value corresponding to this entry with the specified value (optional operation).default IntegersetValue(Integer value)Deprecated.Please use the corresponding type-specific method instead.
-
-
-
Method Detail
-
getIntKey
int getIntKey()
Returns the key corresponding to this entry.- See Also:
Map.Entry.getKey()
-
getKey
@Deprecated default Integer getKey()
Deprecated.Please use the corresponding type-specific method instead.
-
getIntValue
int getIntValue()
Returns the value corresponding to this entry.- See Also:
Map.Entry.getValue()
-
setValue
int setValue(int value)
Replaces the value corresponding to this entry with the specified value (optional operation).- See Also:
Map.Entry.setValue(Object)
-
getValue
@Deprecated default Integer getValue()
Deprecated.Please use the corresponding type-specific method instead.
-
-