Class Short2ByteFunctions.SynchronizedFunction

java.lang.Object
it.unimi.dsi.fastutil.shorts.Short2ByteFunctions.SynchronizedFunction
All Implemented Interfaces:
Function<Short,​Byte>, Short2ByteFunction, Serializable, Function<Short,​Byte>, IntUnaryOperator
Direct Known Subclasses:
Short2ByteMaps.SynchronizedMap
Enclosing class:
Short2ByteFunctions

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

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

    Methods inherited from interface java.util.function.IntUnaryOperator

    andThen, compose