Java android.util ArrayMap fields, constructors, methods, implement or subclass

Example usage for Java android.util ArrayMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.util ArrayMap.

The text is from its open source code.

Constructor

ArrayMap(int capacity)
Create a new ArrayMap with a given initial capacity.
ArrayMap(ArrayMap map)
Create a new ArrayMap with the mappings from the given ArrayMap.
ArrayMap()
Create a new empty ArrayMap.

Method

Set>entrySet()
Return a java.util.Set for iterating over and interacting with all mappings in the array map.
Vget(Object key)
Retrieve a value from the array.
booleanisEmpty()
Return true if the array map contains no items.
SetkeySet()
Return a java.util.Set for iterating over and interacting with all keys in the array map.
Vput(K key, V value)
Add a new value to the array map.
Vremove(Object key)
Remove an existing key from the array map.
intsize()
Return the number of items in this array map.
Collectionvalues()
Return a java.util.Collection for iterating over and interacting with all values in the array map.