Class CharObjectHashMap.KeysMapWrapper
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.CharObjectHashMap.KeysMapWrapper
-
- All Implemented Interfaces:
MutableCharKeysMap
,CharKeysMap
- Enclosing class:
- CharObjectHashMap<V>
private class CharObjectHashMap.KeysMapWrapper extends java.lang.Object implements MutableCharKeysMap
-
-
Constructor Summary
Constructors Modifier Constructor Description private
KeysMapWrapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(char key)
void
forEachKey(CharProcedure procedure)
boolean
isEmpty()
boolean
notEmpty()
void
removeKey(char key)
int
size()
-
-
-
Method Detail
-
size
public int size()
- Specified by:
size
in interfaceCharKeysMap
-
containsKey
public boolean containsKey(char key)
- Specified by:
containsKey
in interfaceCharKeysMap
-
forEachKey
public void forEachKey(CharProcedure procedure)
- Specified by:
forEachKey
in interfaceCharKeysMap
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceCharKeysMap
-
notEmpty
public boolean notEmpty()
- Specified by:
notEmpty
in interfaceCharKeysMap
-
removeKey
public void removeKey(char key)
- Specified by:
removeKey
in interfaceMutableCharKeysMap
-
clear
public void clear()
- Specified by:
clear
in interfaceMutableCharKeysMap
-
-