Uses of Interface
org.codelibs.jhighlight.fastutil.chars.Char2ObjectFunction
-
Packages that use Char2ObjectFunction Package Description org.codelibs.jhighlight.fastutil.chars -
-
Uses of Char2ObjectFunction in org.codelibs.jhighlight.fastutil.chars
Subinterfaces of Char2ObjectFunction in org.codelibs.jhighlight.fastutil.chars Modifier and Type Interface Description interfaceChar2ObjectMap<V>A type-specificMap; provides some additional methods that use polymorphism to avoid (un)boxing, and handling of a default return value.Classes in org.codelibs.jhighlight.fastutil.chars that implement Char2ObjectFunction Modifier and Type Class Description classAbstractChar2ObjectFunction<V>An abstract class providing basic methods for functions implementing a type-specific interface.classAbstractChar2ObjectMap<V>An abstract class providing basic methods for maps implementing a type-specific interface.static classChar2ObjectFunctions.EmptyFunction<V>An immutable class representing an empty type-specific function.static classChar2ObjectFunctions.Singleton<V>An immutable class representing a type-specific singleton function.static classChar2ObjectFunctions.SynchronizedFunction<V>A synchronized wrapper class for functions.static classChar2ObjectFunctions.UnmodifiableFunction<V>An unmodifiable wrapper class for functions.classChar2ObjectOpenHashMap<V>A type-specific hash map with a fast, small-footprint implementation.Fields in org.codelibs.jhighlight.fastutil.chars declared as Char2ObjectFunction Modifier and Type Field Description protected Char2ObjectFunction<V>Char2ObjectFunctions.SynchronizedFunction. functionprotected Char2ObjectFunction<V>Char2ObjectFunctions.UnmodifiableFunction. functionMethods in org.codelibs.jhighlight.fastutil.chars that return Char2ObjectFunction Modifier and Type Method Description static <V> Char2ObjectFunction<V>Char2ObjectFunctions. singleton(char key, V value)Returns a type-specific immutable function containing only the specified pair.static <V> Char2ObjectFunction<V>Char2ObjectFunctions. singleton(Character key, V value)Returns a type-specific immutable function containing only the specified pair.static <V> Char2ObjectFunction<V>Char2ObjectFunctions. synchronize(Char2ObjectFunction<V> f)Returns a synchronized type-specific function backed by the given type-specific function.static <V> Char2ObjectFunction<V>Char2ObjectFunctions. synchronize(Char2ObjectFunction<V> f, Object sync)Returns a synchronized type-specific function backed by the given type-specific function, using an assigned object to synchronize.static <V> Char2ObjectFunction<V>Char2ObjectFunctions. unmodifiable(Char2ObjectFunction<V> f)Returns an unmodifiable type-specific function backed by the given type-specific function.Methods in org.codelibs.jhighlight.fastutil.chars with parameters of type Char2ObjectFunction Modifier and Type Method Description static <V> Char2ObjectFunction<V>Char2ObjectFunctions. synchronize(Char2ObjectFunction<V> f)Returns a synchronized type-specific function backed by the given type-specific function.static <V> Char2ObjectFunction<V>Char2ObjectFunctions. synchronize(Char2ObjectFunction<V> f, Object sync)Returns a synchronized type-specific function backed by the given type-specific function, using an assigned object to synchronize.static <V> Char2ObjectFunction<V>Char2ObjectFunctions. unmodifiable(Char2ObjectFunction<V> f)Returns an unmodifiable type-specific function backed by the given type-specific function.Constructors in org.codelibs.jhighlight.fastutil.chars with parameters of type Char2ObjectFunction Constructor Description SynchronizedFunction(Char2ObjectFunction<V> f)SynchronizedFunction(Char2ObjectFunction<V> f, Object sync)UnmodifiableFunction(Char2ObjectFunction<V> f)
-