Class Short2DoubleFunctions.UnmodifiableFunction

java.lang.Object
it.unimi.dsi.fastutil.shorts.AbstractShort2DoubleFunction
it.unimi.dsi.fastutil.shorts.Short2DoubleFunctions.UnmodifiableFunction
All Implemented Interfaces:
Function<Short,​Double>, Short2DoubleFunction, Serializable, Function<Short,​Double>, IntToDoubleFunction
Direct Known Subclasses:
Short2DoubleMaps.UnmodifiableMap
Enclosing class:
Short2DoubleFunctions

public static class Short2DoubleFunctions.UnmodifiableFunction
extends AbstractShort2DoubleFunction
implements Serializable
An unmodifiable wrapper class for functions.
See Also:
Serialized Form
  • Method Summary

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

    apply

    Methods inherited from interface java.util.function.Function

    andThen, compose

    Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2DoubleFunction

    applyAsDouble, containsKey