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