Class Long2FloatFunctions.SynchronizedFunction

java.lang.Object
it.unimi.dsi.fastutil.longs.Long2FloatFunctions.SynchronizedFunction
All Implemented Interfaces:
Function<Long,​Float>, Long2FloatFunction, Serializable, Function<Long,​Float>, LongToDoubleFunction
Direct Known Subclasses:
Long2FloatMaps.SynchronizedMap
Enclosing class:
Long2FloatFunctions

public static class Long2FloatFunctions.SynchronizedFunction
extends Object
implements Long2FloatFunction, Serializable
A synchronized wrapper class for functions.
See Also:
Serialized Form
  • Method Summary

    Modifier and Type Method Description
    Float apply​(Long key)
    Deprecated.
    Please use the corresponding type-specific method instead.
    double applyAsDouble​(long operand)
    void clear()
    Removes all associations from this function (optional operation).
    boolean containsKey​(long k)
    Returns true if this function contains a mapping for the specified key.
    boolean containsKey​(Object k)
    Deprecated.
    float defaultReturnValue()
    Gets the default return value.
    void defaultReturnValue​(float defRetValue)
    Sets the default return value (optional operation).
    boolean equals​(Object o)  
    float get​(long k)
    Returns the value to which the given key is mapped.
    Float get​(Object k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int hashCode()  
    float put​(long k, float v)
    Adds a pair to the map (optional operation).
    Float put​(Long k, Float v)
    Deprecated.
    Please use the corresponding type-specific method instead.
    float remove​(long k)
    Removes the mapping with the given key (optional operation).
    Float remove​(Object k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int size()
    Returns the intended number of keys in this function, or -1 if no such number exists.
    String toString()  

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface java.util.function.Function

    andThen, compose