Interface IntKeysMap
-
- All Known Subinterfaces:
MutableIntKeysMap
- All Known Implementing Classes:
IntBooleanHashMap
,IntByteHashMap
,IntCharHashMap
,IntDoubleHashMap
,IntFloatHashMap
,IntIntHashMap
,IntLongHashMap
,IntObjectHashMap.KeysMapWrapper
,IntShortHashMap
public interface IntKeysMap
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(int key)
void
forEachKey(IntProcedure procedure)
boolean
isEmpty()
boolean
notEmpty()
int
size()
-
-
-
Method Detail
-
size
int size()
-
containsKey
boolean containsKey(int key)
-
forEachKey
void forEachKey(IntProcedure procedure)
-
isEmpty
boolean isEmpty()
-
notEmpty
boolean notEmpty()
-
-