Class Char2ObjectFunctions.EmptyFunction<V>
- java.lang.Object
-
- org.codelibs.jhighlight.fastutil.chars.AbstractChar2ObjectFunction<V>
-
- org.codelibs.jhighlight.fastutil.chars.Char2ObjectFunctions.EmptyFunction<V>
-
- All Implemented Interfaces:
Serializable,Cloneable,Char2ObjectFunction<V>,Function<Character,V>
- Enclosing class:
- Char2ObjectFunctions
public static class Char2ObjectFunctions.EmptyFunction<V> extends AbstractChar2ObjectFunction<V> implements Serializable, Cloneable
An immutable class representing an empty type-specific function.This class may be useful to implement your own in case you subclass a type-specific function.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.codelibs.jhighlight.fastutil.chars.AbstractChar2ObjectFunction
defRetValue
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedEmptyFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Removes all associations from this function (optional operation).Objectclone()booleancontainsKey(char k)VdefaultReturnValue()Gets the default return value.voiddefaultReturnValue(V defRetValue)Sets the default return value.Vget(char k)Returns the value to which the given key is mapped.Vget(Object k)Delegates to the corresponding type-specific method, taking care of returningnullon a missing key.intsize()Returns the intended number of keys in this function, or -1 if no such number exists.-
Methods inherited from class org.codelibs.jhighlight.fastutil.chars.AbstractChar2ObjectFunction
containsKey, put, put, remove, remove
-
-
-
-
Method Detail
-
get
public V get(char k)
Description copied from interface:Char2ObjectFunctionReturns the value to which the given key is mapped.- Specified by:
getin interfaceChar2ObjectFunction<V>- Parameters:
k- the key.- Returns:
- the corresponding value, or the default return value if no value was present for the given key.
- See Also:
Function.get(Object)
-
containsKey
public boolean containsKey(char k)
- Specified by:
containsKeyin interfaceChar2ObjectFunction<V>- See Also:
Function.containsKey(Object)
-
defaultReturnValue
public V defaultReturnValue()
Description copied from interface:Char2ObjectFunctionGets the default return value.- Specified by:
defaultReturnValuein interfaceChar2ObjectFunction<V>- Overrides:
defaultReturnValuein classAbstractChar2ObjectFunction<V>- Returns:
- the current default return value.
-
defaultReturnValue
public void defaultReturnValue(V defRetValue)
Description copied from interface:Char2ObjectFunctionSets the default return value. This value must be returned by type-specific versions ofget(),put()andremove()to denote that the map does not contain the specified key. It must be 0/false/nullby default.- Specified by:
defaultReturnValuein interfaceChar2ObjectFunction<V>- Overrides:
defaultReturnValuein classAbstractChar2ObjectFunction<V>- Parameters:
defRetValue- the new default return value.- See Also:
Char2ObjectFunction.defaultReturnValue()
-
get
public V get(Object k)
Description copied from class:AbstractChar2ObjectFunctionDelegates to the corresponding type-specific method, taking care of returningnullon a missing key.This method must check whether the provided key is in the map using
containsKey(). Thus, it probes the map twice. Implementors of subclasses should override it with a more efficient method.- Specified by:
getin interfaceFunction<Character,V>- Overrides:
getin classAbstractChar2ObjectFunction<V>- Parameters:
k- the key.- Returns:
- the corresponding value, or
nullif no value was present for the given key. - See Also:
Map.get(Object)
-
size
public int size()
Description copied from interface:FunctionReturns the intended number of keys in this function, or -1 if no such number exists.Most function implementations will have some knowledge of the intended number of keys in their domain. In some cases, however, this might not be possible.
-
clear
public void clear()
Description copied from interface:FunctionRemoves all associations from this function (optional operation).- Specified by:
clearin interfaceFunction<Character,V>- Overrides:
clearin classAbstractChar2ObjectFunction<V>- See Also:
Map.clear()
-
-