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