Class Double2IntFunctions.UnmodifiableFunction

java.lang.Object
it.unimi.dsi.fastutil.doubles.AbstractDouble2IntFunction
it.unimi.dsi.fastutil.doubles.Double2IntFunctions.UnmodifiableFunction
All Implemented Interfaces:
Double2IntFunction, Function<Double,​Integer>, Serializable, DoubleToIntFunction, Function<Double,​Integer>
Direct Known Subclasses:
Double2IntMaps.UnmodifiableMap
Enclosing class:
Double2IntFunctions

public static class Double2IntFunctions.UnmodifiableFunction
extends AbstractDouble2IntFunction
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​(double k)
    Returns true if this function contains a mapping for the specified key.
    int defaultReturnValue()
    Gets the default return value.
    void defaultReturnValue​(int defRetValue)
    Sets the default return value (optional operation).
    boolean equals​(Object o)  
    int get​(double k)
    Returns the value to which the given key is mapped.
    Integer get​(Object k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int hashCode()  
    int put​(double k, int v)
    Adds a pair to the map (optional operation).
    Integer put​(Double k, Integer v)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int remove​(double k)
    Removes the mapping with the given key (optional operation).
    Integer 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.doubles.Double2IntFunction

    applyAsInt, containsKey

    Methods inherited from interface it.unimi.dsi.fastutil.Function

    apply

    Methods inherited from interface java.util.function.Function

    andThen, compose