Android.Util.ArrayMap: Method Members

The methods of Android.Util.ArrayMap are listed below. For a list of all members, see the ArrayMap Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

Clear()
Make the array map empty.
ContainsAll(ICollection<object>) : bool
Documentation for this section has not yet been entered.
ContainsKey(Java.Lang.Object) : bool
Check whether a key exists in the array.
ContainsValue(Java.Lang.Object) : bool
Check whether a value exists in the array.
EnsureCapacity(int)
Ensure the array map can hold at least minimumCapacity items.
EntrySet() : ICollection
Return a Java.Util.ISet for iterating over and interacting with all mappings in the array map.
Get(Java.Lang.Object) : Java.Lang.Object
Retrieve a value from the array.
IndexOfKey(Java.Lang.Object) : int
Returns the index of a key in the set.
KeyAt(int) : Java.Lang.Object
Return the key at the given index in the array.
KeySet() : ICollection
Return a Java.Util.ISet for iterating over and interacting with all keys in the array map.
Put(Java.Lang.Object, Java.Lang.Object) : Java.Lang.Object
Documentation for this section has not yet been entered.
PutAll(ArrayMap)
Documentation for this section has not yet been entered.
PutAll(IDictionary)
Documentation for this section has not yet been entered.
Remove(Java.Lang.Object) : Java.Lang.Object
Remove an existing key from the array map.
RemoveAll(ICollection<object>) : bool
Documentation for this section has not yet been entered.
RemoveAt(int) : Java.Lang.Object
Remove the key/value mapping at the given index.
RetainAll(ICollection<object>) : bool
Documentation for this section has not yet been entered.
SetValueAt(int, Java.Lang.Object) : Java.Lang.Object
Documentation for this section has not yet been entered.
Size() : int
Return the number of items in this array map.
ValueAt(int) : Java.Lang.Object
Return the value at the given index in the array.
Values() : ICollection
Return a Android.Runtime.JavaCollection for iterating over and interacting with all values in the array map.