Interface FloatKeysMap
-
- All Known Subinterfaces:
MutableFloatKeysMap
- All Known Implementing Classes:
FloatBooleanHashMap
,FloatByteHashMap
,FloatCharHashMap
,FloatDoubleHashMap
,FloatFloatHashMap
,FloatIntHashMap
,FloatLongHashMap
,FloatObjectHashMap.KeysMapWrapper
,FloatShortHashMap
public interface FloatKeysMap
This file was automatically generated from template file primitiveKeysMap.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
containsKey(float key)
void
forEachKey(FloatProcedure procedure)
boolean
isEmpty()
boolean
notEmpty()
int
size()
-
-
-
Method Detail
-
size
int size()
-
containsKey
boolean containsKey(float key)
-
forEachKey
void forEachKey(FloatProcedure procedure)
-
isEmpty
boolean isEmpty()
-
notEmpty
boolean notEmpty()
-
-