Package it.unimi.dsi.fastutil.longs
Class AbstractLong2IntFunction
- java.lang.Object
-
- it.unimi.dsi.fastutil.longs.AbstractLong2IntFunction
-
- All Implemented Interfaces:
Function<Long,Integer>
,Long2IntFunction
,Serializable
,Function<Long,Integer>
,LongToIntFunction
- Direct Known Subclasses:
AbstractLong2IntMap
,Long2IntFunctions.EmptyFunction
,Long2IntFunctions.Singleton
,Long2IntFunctions.UnmodifiableFunction
public abstract class AbstractLong2IntFunction extends Object implements Long2IntFunction, Serializable
An abstract class providing basic methods for functions implementing a type-specific interface.This class handles directly a default return value (including methods to access it). Instances of classes inheriting from this class have just to return
defRetValue
to denote lack of a key in type-specific methods. The value is serialized.Implementing subclasses have just to provide type-specific
get()
, type-specificcontainsKey()
, andsize()
methods.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
defaultReturnValue()
Gets the default return value.void
defaultReturnValue(int rv)
Sets the default return value (optional operation).-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface it.unimi.dsi.fastutil.longs.Long2IntFunction
applyAsInt, containsKey, containsKey, get, get, put, put, remove, remove
-
-
-
-
Method Detail
-
defaultReturnValue
public void defaultReturnValue(int rv)
Description copied from interface:Long2IntFunction
Sets the default return value (optional operation). This value must be returned by type-specific versions ofget()
,put()
andremove()
to denote that the map does not contain the specified key. It must be 0/false
/null
by default.- Specified by:
defaultReturnValue
in interfaceLong2IntFunction
- Parameters:
rv
- the new default return value.- See Also:
Long2IntFunction.defaultReturnValue()
-
defaultReturnValue
public int defaultReturnValue()
Description copied from interface:Long2IntFunction
Gets the default return value.This default implementation just return the default null value of the type (
null
for objects, 0 for scalars, false for Booleans).- Specified by:
defaultReturnValue
in interfaceLong2IntFunction
- Returns:
- the current default return value.
-
-