Interface CharArrayMapper<V>
- All Superinterfaces:
Cloneable
- All Known Implementing Classes:
CharArrayHashMap,CharArrayMap,CharDelegateMap,HashtableOfPackage
-
Method Summary
Modifier and TypeMethodDescriptionbooleancontainsKey(char[] key) get(char[] key) Collection<char[]> keys()Returns a copied collection of keys.intsize()static <V> StringtoString(CharArrayMapper<V> map) values()Returns a copied collection of values.
-
Method Details
-
containsKey
boolean containsKey(char[] key) -
get
-
put
-
size
int size()- Returns:
- the number of keys
-
values
Collection<V> values()Returns a copied collection of values.- Returns:
- all values in undefined order. The order is not guaranteed to be stable.
-
keys
Collection<char[]> keys()Returns a copied collection of keys.- Returns:
- all keys in undefined order. The order is not guaranteed to be stable.
-
toString
-