Class Reference2BooleanFunctions.SynchronizedFunction<K>

java.lang.Object
it.unimi.dsi.fastutil.objects.Reference2BooleanFunctions.SynchronizedFunction<K>
All Implemented Interfaces:
Function<K,​Boolean>, Reference2BooleanFunction<K>, Serializable, Function<K,​Boolean>, Predicate<K>
Direct Known Subclasses:
Reference2BooleanMaps.SynchronizedMap
Enclosing class:
Reference2BooleanFunctions

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

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

    Methods inherited from interface java.util.function.Predicate

    and, negate, or