Interface ByteKeysMap
-
- All Known Subinterfaces:
MutableByteKeysMap
- All Known Implementing Classes:
ByteBooleanHashMap
,ByteByteHashMap
,ByteCharHashMap
,ByteDoubleHashMap
,ByteFloatHashMap
,ByteIntHashMap
,ByteLongHashMap
,ByteObjectHashMap.KeysMapWrapper
,ByteShortHashMap
public interface ByteKeysMap
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(byte key)
void
forEachKey(ByteProcedure procedure)
boolean
isEmpty()
boolean
notEmpty()
int
size()
-
-
-
Method Detail
-
size
int size()
-
containsKey
boolean containsKey(byte key)
-
forEachKey
void forEachKey(ByteProcedure procedure)
-
isEmpty
boolean isEmpty()
-
notEmpty
boolean notEmpty()
-
-