Table of Contents

Class ArraySet

Namespace
Android.Util
Assembly
MASES.Netdroid.dll
public class ArraySet : JVMBridgeBase<ArraySet>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Inheritance
JVMBridgeBase
JVMBridgeBase<ArraySet>
ArraySet
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
Inherited Members
JVMBridgeBase<ArraySet>.IsAssignableFrom(IJavaType)
JVMBridgeBase<ArraySet>.IsAssignableFrom<T>()
JVMBridgeBase<ArraySet>.Execute<T>(params T[])
JVMBridgeBase<ArraySet>.DynBridgeClazz
JVMBridgeBase<ArraySet>.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.Dispose()
JVMBridgeBase.ToString()
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeListener
Extension Methods

Constructors

ArraySet()

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

public ArraySet()

ArraySet(ArraySet)

public ArraySet(ArraySet arg0)

Parameters

arg0 ArraySet

ArraySet

ArraySet(Collection)

public ArraySet(Collection arg0)

Parameters

arg0 Collection

Collection

ArraySet(int)

public ArraySet(int arg0)

Parameters

arg0 int

int

ArraySet(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 ArraySet(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

Add(object)

public bool Add(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

AddAll(ArraySet)

public void AddAll(ArraySet arg0)

Parameters

arg0 ArraySet

ArraySet

AddAll(Collection)

public bool AddAll(Collection arg0)

Parameters

arg0 Collection

Collection

Returns

bool

bool

Clear()

public void Clear()

Contains(object)

public bool Contains(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

ContainsAll(Collection)

public bool ContainsAll(Collection arg0)

Parameters

arg0 Collection

Collection

Returns

bool

bool

EnsureCapacity(int)

public void EnsureCapacity(int arg0)

Parameters

arg0 int

int

ForEach(Consumer)

public void ForEach(Consumer arg0)

Parameters

arg0 Consumer

Consumer

IndexOf(object)

public int IndexOf(object arg0)

Parameters

arg0 object

object

Returns

int

int

IsEmpty()

public bool IsEmpty()

Returns

bool

bool

Iterator()

public Iterator Iterator()

Returns

Iterator

Iterator

Remove(object)

public bool Remove(object arg0)

Parameters

arg0 object

object

Returns

bool

bool

RemoveAll(ArraySet)

public bool RemoveAll(ArraySet arg0)

Parameters

arg0 ArraySet

ArraySet

Returns

bool

bool

RemoveAll(Collection)

public bool RemoveAll(Collection arg0)

Parameters

arg0 Collection

Collection

Returns

bool

bool

RemoveAt(int)

public object RemoveAt(int arg0)

Parameters

arg0 int

int

Returns

object

object

RemoveIf(Predicate)

public bool RemoveIf(Predicate arg0)

Parameters

arg0 Predicate

Predicate

Returns

bool

bool

RetainAll(Collection)

public bool RetainAll(Collection arg0)

Parameters

arg0 Collection

Collection

Returns

bool

bool

Size()

public int Size()

Returns

int

int

ToArray()

public object[] ToArray()

Returns

object[]

object

ToArray(object[])

public object[] ToArray(object[] arg0)

Parameters

arg0 object[]

object

Returns

object[]

object

ValueAt(int)

public object ValueAt(int arg0)

Parameters

arg0 int

int

Returns

object

object

Operators

implicit operator Collection(ArraySet)

Converter from ArraySet to Collection

public static implicit operator Collection(ArraySet t)

Parameters

t ArraySet

Returns

Collection

implicit operator Set(ArraySet)

Converter from ArraySet to Set

public static implicit operator Set(ArraySet t)

Parameters

t ArraySet

Returns

Set