Class Long2CharFunctions.UnmodifiableFunction

java.lang.Object
it.unimi.dsi.fastutil.longs.AbstractLong2CharFunction
it.unimi.dsi.fastutil.longs.Long2CharFunctions.UnmodifiableFunction
All Implemented Interfaces:
Function<Long,​Character>, Long2CharFunction, Serializable, Function<Long,​Character>, LongToIntFunction
Direct Known Subclasses:
Long2CharMaps.UnmodifiableMap
Enclosing class:
Long2CharFunctions

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

    applyAsInt, containsKey