Java.Util.Concurrent.CopyOnWriteArrayList Members

The members of Java.Util.Concurrent.CopyOnWriteArrayList are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Creates a new empty instance.
Documentation for this section has not yet been entered.
Documentation for this section has not yet been entered.

Protected Constructors

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

Public Properties

[read-only]
IsEmptybool. Returns whether this List contains no elements.

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

Add(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
Add(int, Java.Lang.Object)
Documentation for this section has not yet been entered.
AddAll(ICollection) : bool
Documentation for this section has not yet been entered.
AddAll(int, ICollection) : bool
Documentation for this section has not yet been entered.
AddAllAbsent(ICollection) : int
Documentation for this section has not yet been entered.
AddIfAbsent(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
Clear()
Removes all elements from this List, leaving it empty.
Clone() : Java.Lang.Object
Creates and returns a copy of this Object.
Contains(Java.Lang.Object) : bool
Tests whether this List contains the specified object.
ContainsAll(ICollection) : bool
Documentation for this section has not yet been entered.
Get(int) : Java.Lang.Object
Returns the element at the specified location in this List.
IndexOf(Java.Lang.Object) : int
Searches this List for the specified object and returns the index of the first occurrence.
IndexOf(Java.Lang.Object, int) : int
Documentation for this section has not yet been entered.
Iterator() : Java.Util.IIterator
Returns an Java.Util.IIterator that iterates over the elements of this list as they were at the time of this method call.
LastIndexOf(Java.Lang.Object) : int
Searches this List for the specified object and returns the index of the last occurrence.
LastIndexOf(Java.Lang.Object, int) : int
Documentation for this section has not yet been entered.
ListIterator() : Java.Util.IListIterator
Equivalent to listIterator(0).
ListIterator(int) : Java.Util.IListIterator
Returns a Java.Util.IListIterator that iterates over the elements of this list as they were at the time of this method call.
Remove(Java.Lang.Object) : bool
Removes the first occurrence of the specified object from this List.
Remove(int) : Java.Lang.Object
Removes the object at the specified location from this List.
RemoveAll(ICollection) : bool
Documentation for this section has not yet been entered.
RetainAll(ICollection) : bool
Documentation for this section has not yet been entered.
Set(int, Java.Lang.Object) : Java.Lang.Object
Documentation for this section has not yet been entered.
Size() : int
Returns the number of elements in this List.
SubList(int, int) : IList
Returns a List of the specified portion of this List from the given start index to the end index minus one.
ToArray() : Java.Lang.Object[]
Returns an array containing all elements contained in this List.
ToArray(Java.Lang.Object[]) : Java.Lang.Object[]
Documentation for this section has not yet been entered.