Class Object2DoubleFunctions.SynchronizedFunction<K>

java.lang.Object
it.unimi.dsi.fastutil.objects.Object2DoubleFunctions.SynchronizedFunction<K>
All Implemented Interfaces:
Function<K,​Double>, Object2DoubleFunction<K>, Serializable, Function<K,​Double>, ToDoubleFunction<K>
Direct Known Subclasses:
Object2DoubleMaps.SynchronizedMap
Enclosing class:
Object2DoubleFunctions

public static class Object2DoubleFunctions.SynchronizedFunction<K>
extends Object
implements Object2DoubleFunction<K>, Serializable
A synchronized wrapper class for functions.
See Also:
Serialized Form
  • Method Summary

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