Class Char2IntFunctions.SynchronizedFunction

java.lang.Object
it.unimi.dsi.fastutil.chars.Char2IntFunctions.SynchronizedFunction
All Implemented Interfaces:
Char2IntFunction, Function<Character,​Integer>, Serializable, Function<Character,​Integer>, IntUnaryOperator
Direct Known Subclasses:
Char2IntMaps.SynchronizedMap
Enclosing class:
Char2IntFunctions

public static class Char2IntFunctions.SynchronizedFunction
extends Object
implements Char2IntFunction, Serializable
A synchronized wrapper class for functions.
See Also:
Serialized Form
  • Method Summary

    Modifier and Type Method Description
    Integer apply​(Character key)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int applyAsInt​(int operand)
    Deprecated.
    Please use the corresponding type-specific method instead.
    void clear()
    Removes all associations from this function (optional operation).
    boolean containsKey​(char k)
    Returns true if this function contains a mapping for the specified key.
    boolean containsKey​(Object k)
    Deprecated.
    int defaultReturnValue()
    Gets the default return value.
    void defaultReturnValue​(int defRetValue)
    Sets the default return value (optional operation).
    boolean equals​(Object o)  
    int get​(char 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​(char k, int v)
    Adds a pair to the map (optional operation).
    Integer put​(Character k, Integer v)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int remove​(char 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 java.util.function.Function

    andThen, compose

    Methods inherited from interface java.util.function.IntUnaryOperator

    andThen, compose