Package it.unimi.dsi.fastutil.objects
Interface Object2FloatMap.Entry<K>
-
- All Known Implementing Classes:
AbstractObject2FloatMap.BasicEntry
- Enclosing interface:
- Object2FloatMap<K>
public static interface Object2FloatMap.Entry<K> extends Map.Entry<K,Float>
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 floatgetFloatValue()Returns the value corresponding to this entry.default FloatgetValue()Deprecated.Please use the corresponding type-specific method instead.floatsetValue(float value)Replaces the value corresponding to this entry with the specified value (optional operation).default FloatsetValue(Float value)Deprecated.Please use the corresponding type-specific method instead.
-
-
-
Method Detail
-
getFloatValue
float getFloatValue()
Returns the value corresponding to this entry.- See Also:
Map.Entry.getValue()
-
setValue
float setValue(float value)
Replaces the value corresponding to this entry with the specified value (optional operation).- See Also:
Map.Entry.setValue(Object)
-
getValue
@Deprecated default Float getValue()
Deprecated.Please use the corresponding type-specific method instead.
-
-