Table of Contents

Class ArrayMap<K, V>

Namespace
Android.Util
Assembly
MASES.Netdroid.dll
public class ArrayMap<K, V> : Map<K, V>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IMap<K, V>

Type Parameters

K
V
Inheritance
JVMBridgeBase
JVMBridgeBase<Map<K, V>>
Map<K, V>
ArrayMap<K, V>
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
IMap<K, V>
Inherited Members
JVMBridgeBase<Map<K, V>>.IsAssignableFrom(IJavaType)
JVMBridgeBase<Map<K, V>>.IsAssignableFrom<T>()
JVMBridgeBase<Map<K, V>>.Execute<T>(params T[])
JVMBridgeBase<Map<K, V>>.DynBridgeClazz
JVMBridgeBase<Map<K, V>>.BridgeClazz
JVMBridgeBase.RuntimeClassNameOf<T>()
JVMBridgeBase.ClassNameOf<T>()
JVMBridgeBase.ClassOf<T>()
JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)
JVMBridgeBase.MonitorEnter()
JVMBridgeBase.MonitorExit()
JVMBridgeBase.IsInstanceOf(IJavaType)
JVMBridgeBase.IsInstanceOf<T>()
JVMBridgeBase.RuntimeIsInstanceOf<T>()
JVMBridgeBase.CastTo<TNewClass>()
JVMBridgeBase.CastDirect<TNewClass>()
JVMBridgeBase.Execute<T>(params T[])
JVMBridgeBase.Dispose()
JVMBridgeBase.ToString()
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeListener
Extension Methods

Constructors

ArrayMap()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

public ArrayMap()

ArrayMap(ArrayMap<K, V>)

public ArrayMap(ArrayMap<K, V> arg0)

Parameters

arg0 ArrayMap<K, V>

ArrayMap

ArrayMap(int)

public ArrayMap(int arg0)

Parameters

arg0 int

int

ArrayMap(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

public ArrayMap(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

Clear()

public void Clear()

ContainsAll(Collection<object>)

public bool ContainsAll(Collection<object> arg0)

Parameters

arg0 Collection<object>

Collection

Returns

bool

bool

ContainsKey(object)

public bool ContainsKey(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

ContainsValue(object)

public bool ContainsValue(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

EnsureCapacity(int)

public void EnsureCapacity(int arg0)

Parameters

arg0 int

int

EntrySet()

public Set<Map.Entry<K, V>> EntrySet()

Returns

Set<Map.Entry<K, V>>

Set

ForEach<Arg0objectSuperK, Arg0objectSuperV>(BiConsumer<Arg0objectSuperK, Arg0objectSuperV>)

public void ForEach<Arg0objectSuperK, Arg0objectSuperV>(BiConsumer<Arg0objectSuperK, Arg0objectSuperV> arg0) where Arg0objectSuperK : K where Arg0objectSuperV : V

Parameters

arg0 BiConsumer<Arg0objectSuperK, Arg0objectSuperV>

BiConsumer

Type Parameters

Arg0objectSuperK

K

Arg0objectSuperV

V

Get(object)

public V Get(object arg0)

Parameters

arg0 object

object

Returns

V

V

IndexOfKey(object)

public int IndexOfKey(object arg0)

Parameters

arg0 object

object

Returns

int

int

IndexOfValue(object)

public int IndexOfValue(object arg0)

Parameters

arg0 object

object

Returns

int

int

IsEmpty()

public bool IsEmpty()

Returns

bool

bool

KeyAt(int)

public K KeyAt(int arg0)

Parameters

arg0 int

int

Returns

K

K

KeySet()

public Set<K> KeySet()

Returns

Set<K>

Set

Put(K, V)

public V Put(K arg0, V arg1)

Parameters

arg0 K

K

arg1 V

V

Returns

V

V

PutAll<Arg0ExtendsK, Arg0ExtendsV>(ArrayMap<Arg0ExtendsK, Arg0ExtendsV>)

public void PutAll<Arg0ExtendsK, Arg0ExtendsV>(ArrayMap<Arg0ExtendsK, Arg0ExtendsV> arg0) where Arg0ExtendsK : K where Arg0ExtendsV : V

Parameters

arg0 ArrayMap<Arg0ExtendsK, Arg0ExtendsV>

ArrayMap

Type Parameters

Arg0ExtendsK

K

Arg0ExtendsV

V

PutAll<Arg0ExtendsK, Arg0ExtendsV>(Map<Arg0ExtendsK, Arg0ExtendsV>)

public void PutAll<Arg0ExtendsK, Arg0ExtendsV>(Map<Arg0ExtendsK, Arg0ExtendsV> arg0) where Arg0ExtendsK : K where Arg0ExtendsV : V

Parameters

arg0 Map<Arg0ExtendsK, Arg0ExtendsV>

Map

Type Parameters

Arg0ExtendsK

K

Arg0ExtendsV

V

Remove(object)

public V Remove(object arg0)

Parameters

arg0 object

object

Returns

V

V

RemoveAll(Collection<object>)

public bool RemoveAll(Collection<object> arg0)

Parameters

arg0 Collection<object>

Collection

Returns

bool

bool

RemoveAt(int)

public V RemoveAt(int arg0)

Parameters

arg0 int

int

Returns

V

V

ReplaceAll<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>(BiFunction<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>)

public void ReplaceAll<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>(BiFunction<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV> arg0) where Arg0objectSuperK : K where Arg0objectSuperV : V where Arg0ExtendsV : V

Parameters

arg0 BiFunction<Arg0objectSuperK, Arg0objectSuperV, Arg0ExtendsV>

BiFunction

Type Parameters

Arg0objectSuperK

K

Arg0objectSuperV

V

Arg0ExtendsV

V

RetainAll(Collection<object>)

public bool RetainAll(Collection<object> arg0)

Parameters

arg0 Collection<object>

Collection

Returns

bool

bool

SetValueAt(int, V)

public V SetValueAt(int arg0, V arg1)

Parameters

arg0 int

int

arg1 V

V

Returns

V

V

Size()

public int Size()

Returns

int

int

ValueAt(int)

public V ValueAt(int arg0)

Parameters

arg0 int

int

Returns

V

V

Values()

public Collection<V> Values()

Returns

Collection<V>

Collection

Operators

implicit operator ArrayMap(ArrayMap<K, V>)

Converter from ArrayMap<K, V> to ArrayMap

public static implicit operator ArrayMap(ArrayMap<K, V> t)

Parameters

t ArrayMap<K, V>

Returns

ArrayMap