JavaList<T> Class

Definition

ArrayList is an implementation of IList, backed by an array.

[Android.Runtime.Register("java/util/ArrayList", DoNotGenerateAcw=true)]
public class JavaList<T> : Android.Runtime.JavaList, System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IList<T>
[<Android.Runtime.Register("java/util/ArrayList", DoNotGenerateAcw=true)>]
type JavaList<'T> = class
    inherit JavaList
    interface IList<'T>
    interface ICollection<'T>
    interface seq<'T>
    interface IEnumerable

Type Parameters

T
Inheritance
JavaList<T>
Attributes
Implements

Remarks

Android platform documentation

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Constructors

JavaList<T>()

Constructs a new ArrayList instance with zero initial capacity.

JavaList<T>(IEnumerable<T>)
JavaList<T>(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
Count (Inherited from JavaList)
Handle

The handle to the underlying Android instance.

(Inherited from Object)
IsEmpty (Inherited from JavaList)
IsFixedSize (Inherited from JavaList)
IsReadOnly (Inherited from JavaList)
IsSynchronized (Inherited from JavaList)
Item[Int32]
JniIdentityHashCode (Inherited from Object)
JniPeerMembers (Inherited from Object)
PeerReference (Inherited from Object)
SyncRoot (Inherited from JavaList)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)
ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)

Methods

Add(Int32, Object) (Inherited from JavaList)
Add(JavaList) (Inherited from JavaList)
Add(Object) (Inherited from JavaList)
Add(Object) (Inherited from JavaList)
Add(T)
AddAll(Int32, JavaList) (Inherited from JavaList)
Clear() (Inherited from JavaList)
Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Contains(Object) (Inherited from JavaList)
Contains(Object) (Inherited from JavaList)
Contains(T)
ContainsAll(JavaList) (Inherited from JavaList)
CopyTo(Array, Int32) (Inherited from JavaList)
CopyTo(T[], Int32)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object) (Inherited from JavaList)
FromJniHandle(IntPtr, JniHandleOwnership)
Get(Int32) (Inherited from JavaList)
GetEnumerator()
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
IndexOf(Object) (Inherited from JavaList)
IndexOf(Object) (Inherited from JavaList)
IndexOf(T)
Insert(Int32, Object) (Inherited from JavaList)
Insert(Int32, T)
Iterator() (Inherited from JavaList)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
LastIndexOf(Object) (Inherited from JavaList)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
Remove(Int32) (Inherited from JavaList)
Remove(Object) (Inherited from JavaList)
Remove(Object) (Inherited from JavaList)
Remove(T)
RemoveAll(JavaList) (Inherited from JavaList)
RemoveAt(Int32) (Inherited from JavaList)
RetainAll(JavaList) (Inherited from JavaList)
Set(Int32, Object) (Inherited from JavaList)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
Size() (Inherited from JavaList)
SubList(Int32, Int32) (Inherited from JavaList)
ToArray() (Inherited from JavaList)
ToArray(Object[]) (Inherited from JavaList)
ToArray<T>() (Inherited from Object)
ToLocalJniHandle(IList<T>)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Explicit Interface Implementations

IEnumerable.GetEnumerator()
IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
ToInteroperableCollection<T>(ICollection<T>)
ToInteroperableCollection<T>(IList<T>)
GetJniTypeName(IJavaPeerable)

Applies to