Class Float2LongFunctions.SynchronizedFunction

java.lang.Object
it.unimi.dsi.fastutil.floats.Float2LongFunctions.SynchronizedFunction
All Implemented Interfaces:
Float2LongFunction, Function<Float,​Long>, Serializable, DoubleToLongFunction, Function<Float,​Long>
Direct Known Subclasses:
Float2LongMaps.SynchronizedMap
Enclosing class:
Float2LongFunctions

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

    Modifier and Type Method Description
    Long apply​(Float key)
    Deprecated.
    Please use the corresponding type-specific method instead.
    long applyAsLong​(double operand)
    Deprecated.
    Please use the corresponding type-specific method instead.
    void clear()
    Removes all associations from this function (optional operation).
    boolean containsKey​(float k)
    Returns true if this function contains a mapping for the specified key.
    boolean containsKey​(Object k)
    Deprecated.
    long defaultReturnValue()
    Gets the default return value.
    void defaultReturnValue​(long defRetValue)
    Sets the default return value (optional operation).
    boolean equals​(Object o)  
    long get​(float k)
    Returns the value to which the given key is mapped.
    Long get​(Object k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int hashCode()  
    long put​(float k, long v)
    Adds a pair to the map (optional operation).
    Long put​(Float k, Long v)
    Deprecated.
    Please use the corresponding type-specific method instead.
    long remove​(float k)
    Removes the mapping with the given key (optional operation).
    Long 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