Class Int2LongFunctions.UnmodifiableFunction

java.lang.Object
it.unimi.dsi.fastutil.ints.AbstractInt2LongFunction
it.unimi.dsi.fastutil.ints.Int2LongFunctions.UnmodifiableFunction
All Implemented Interfaces:
Function<Integer,​Long>, Int2LongFunction, Serializable, Function<Integer,​Long>, IntToLongFunction
Direct Known Subclasses:
Int2LongMaps.UnmodifiableMap
Enclosing class:
Int2LongFunctions

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

    applyAsLong, containsKey