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