Class Reference2ByteFunctions.UnmodifiableFunction<K>

java.lang.Object
it.unimi.dsi.fastutil.objects.AbstractReference2ByteFunction<K>
it.unimi.dsi.fastutil.objects.Reference2ByteFunctions.UnmodifiableFunction<K>
All Implemented Interfaces:
Function<K,​Byte>, Reference2ByteFunction<K>, Serializable, Function<K,​Byte>, ToIntFunction<K>
Direct Known Subclasses:
Reference2ByteMaps.UnmodifiableMap
Enclosing class:
Reference2ByteFunctions

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

    applyAsInt