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