- get
Retrieve a value from the array.
- put
Add a new value to the array map.
- containsKey
Check whether a key exists in the array.
- keyAt
Return the key at the given index in the array.
- size
Return the number of items in this array map.
- isEmpty
Return true if the array map contains no items.
- <init>
Create a new ArrayMap with the mappings from the given ArrayMap.
- clear
Make the array map empty. All storage is released.
- putAll
Perform a #put(Object,Object) of all key/value pairs in array
- remove
Remove an existing key from the array map.
- valueAt
Return the value at the given index in the array.
- ensureCapacity
Ensure the array map can hold at least minimumCapacity items.