Java.Util.AbstractList Class
AbstractList is an abstract implementation of the List interface, optimized for a backing store which supports random access.

See Also: AbstractList Members

Syntax

[Android.Runtime.Register("java/util/AbstractList", DoNotGenerateAcw=true)]
public abstract class AbstractList : AbstractCollection, IList, IDisposable

Remarks

AbstractList is an abstract implementation of the List interface, optimized for a backing store which supports random access. This implementation does not support adding or replacing. A subclass must implement the abstract methods get() and size(), and to create a modifiable List it's necessary to override the add() method that currently throws an UnsupportedOperationException.

[Android Documentation]

Requirements

Namespace: Java.Util
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1