Android.Util.ArrayMap Members

The members of Android.Util.ArrayMap are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Create a new empty ArrayMap.
Create a new ArrayMap with the mappings from the given ArrayMap.
Create a new ArrayMap with a given initial capacity.

Public Properties

[read-only]
IsEmptybool. Return true if the array map contains no items.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

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.