Class Float2BooleanFunctions.SynchronizedFunction

java.lang.Object
it.unimi.dsi.fastutil.floats.Float2BooleanFunctions.SynchronizedFunction
All Implemented Interfaces:
Float2BooleanFunction, Function<Float,​Boolean>, Serializable, DoublePredicate, Function<Float,​Boolean>
Direct Known Subclasses:
Float2BooleanMaps.SynchronizedMap
Enclosing class:
Float2BooleanFunctions

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

    Modifier and Type Method Description
    Boolean apply​(Float key)
    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.
    boolean defaultReturnValue()
    Gets the default return value.
    void defaultReturnValue​(boolean defRetValue)
    Sets the default return value (optional operation).
    boolean equals​(Object o)  
    boolean get​(float k)
    Returns the value to which the given key is mapped.
    Boolean get​(Object k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int hashCode()  
    boolean put​(float k, boolean v)
    Adds a pair to the map (optional operation).
    Boolean put​(Float k, Boolean v)
    Deprecated.
    Please use the corresponding type-specific method instead.
    boolean remove​(float k)
    Removes the mapping with the given key (optional operation).
    Boolean 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.
    boolean test​(double operand)
    Deprecated.
    Please use the corresponding type-specific method instead.
    String toString()  

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface java.util.function.DoublePredicate

    and, negate, or

    Methods inherited from interface java.util.function.Function

    andThen, compose