Class Object2ShortFunctions.SynchronizedFunction<K>

java.lang.Object
it.unimi.dsi.fastutil.objects.Object2ShortFunctions.SynchronizedFunction<K>
All Implemented Interfaces:
Function<K,​Short>, Object2ShortFunction<K>, Serializable, Function<K,​Short>, ToIntFunction<K>
Direct Known Subclasses:
Object2ShortMaps.SynchronizedMap
Enclosing class:
Object2ShortFunctions

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

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