Interface CharKeysMap
-
- All Known Subinterfaces:
MutableCharKeysMap
- All Known Implementing Classes:
CharBooleanHashMap,CharByteHashMap,CharCharHashMap,CharDoubleHashMap,CharFloatHashMap,CharIntHashMap,CharLongHashMap,CharShortHashMap
public interface CharKeysMapThis 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(char key)voidforEachKey(CharProcedure procedure)booleanisEmpty()booleannotEmpty()intsize()
-
-
-
Method Detail
-
size
int size()
-
containsKey
boolean containsKey(char key)
-
forEachKey
void forEachKey(CharProcedure procedure)
-
isEmpty
boolean isEmpty()
-
notEmpty
boolean notEmpty()
-
-