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 privateKeysMapWrapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(int key)voidforEachKey(IntProcedure procedure)booleanisEmpty()booleannotEmpty()voidremoveKey(int key)intsize()
-
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfaceIntKeysMap
-
containsKey
public boolean containsKey(int key)
- Specified by:
containsKeyin interfaceIntKeysMap
-
forEachKey
public void forEachKey(IntProcedure procedure)
- Specified by:
forEachKeyin interfaceIntKeysMap
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceIntKeysMap
-
notEmpty
public boolean notEmpty()
- Specified by:
notEmptyin interfaceIntKeysMap
-
removeKey
public void removeKey(int key)
- Specified by:
removeKeyin interfaceMutableIntKeysMap
-
clear
public void clear()
- Specified by:
clearin interfaceMutableIntKeysMap
-
-