Interface LongKeysMap
-
- All Known Subinterfaces:
MutableLongKeysMap
- All Known Implementing Classes:
LongBooleanHashMap,LongByteHashMap,LongCharHashMap,LongDoubleHashMap,LongFloatHashMap,LongIntHashMap,LongLongHashMap,LongShortHashMap
public interface LongKeysMapThis 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(long key)voidforEachKey(LongProcedure procedure)booleanisEmpty()booleannotEmpty()intsize()
-
-
-
Method Detail
-
size
int size()
-
containsKey
boolean containsKey(long key)
-
forEachKey
void forEachKey(LongProcedure procedure)
-
isEmpty
boolean isEmpty()
-
notEmpty
boolean notEmpty()
-
-