Class IntObjectHashMap.KeysMapWrapper
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.IntObjectHashMap.KeysMapWrapper
-
- All Implemented Interfaces:
MutableIntKeysMap
,IntKeysMap
- Enclosing class:
- IntObjectHashMap<V>
private class IntObjectHashMap.KeysMapWrapper extends java.lang.Object implements MutableIntKeysMap
-
-
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(int key)
void
forEachKey(IntProcedure procedure)
boolean
isEmpty()
boolean
notEmpty()
void
removeKey(int key)
int
size()
-
-
-
Method Detail
-
size
public int size()
- Specified by:
size
in interfaceIntKeysMap
-
containsKey
public boolean containsKey(int key)
- Specified by:
containsKey
in interfaceIntKeysMap
-
forEachKey
public void forEachKey(IntProcedure procedure)
- Specified by:
forEachKey
in interfaceIntKeysMap
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceIntKeysMap
-
notEmpty
public boolean notEmpty()
- Specified by:
notEmpty
in interfaceIntKeysMap
-
removeKey
public void removeKey(int key)
- Specified by:
removeKey
in interfaceMutableIntKeysMap
-
clear
public void clear()
- Specified by:
clear
in interfaceMutableIntKeysMap
-
-