java.lang.Object | |||
↳ | java.util.AbstractCollection<E> | ||
↳ | java.util.AbstractList<E> | ||
↳ | java.util.ArrayList<E> |
ArrayList is an implementation of List, backed by an array. All optional operations adding, removing, and replacing are supported. The elements can be any objects.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.AbstractList
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new instance of
ArrayList with zero capacity. | |||||||||||
Constructs a new instance of
ArrayList with the specified
capacity. | |||||||||||
Constructs a new instance of
ArrayList containing the elements of
the specified collection. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Inserts the specified object into this
ArrayList at the specified
location. | |||||||||||
Adds the specified object at the end of this
ArrayList . | |||||||||||
Inserts the objects in the specified collection at the specified location
in this List.
| |||||||||||
Adds the objects in the specified collection to this
ArrayList . | |||||||||||
Removes all elements from this
ArrayList , leaving it empty. | |||||||||||
Returns a new
ArrayList with the same elements, the same size and
the same capacity as this ArrayList . | |||||||||||
Searches this
ArrayList for the specified object. | |||||||||||
Ensures that after this operation the
ArrayList can hold the
specified number of elements without further growing. | |||||||||||
Returns the element at the specified location in this list.
| |||||||||||
Searches this list for the specified object and returns the index of the
first occurrence.
| |||||||||||
Returns if this
Collection contains no elements. | |||||||||||
Searches this list for the specified object and returns the index of the
last occurrence.
| |||||||||||
Removes the object at the specified location from this list.
| |||||||||||
Removes one instance of the specified object from this
Collection if one
is contained (optional). | |||||||||||
Replaces the element at the specified location in this
ArrayList
with the specified object. | |||||||||||
Returns the number of elements in this
ArrayList . | |||||||||||
Returns an array containing all elements contained in this
ArrayList . | |||||||||||
Returns a new array containing all elements contained in this
ArrayList . | |||||||||||
Sets the capacity of this
ArrayList to be the same as the current
size. |
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Removes the objects in the specified range from the start to the end, but
not including the end index.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.util.AbstractList
| |||||||||||
From class java.util.AbstractCollection
| |||||||||||
From class java.lang.Object
| |||||||||||
From interface java.lang.Iterable
| |||||||||||
From interface java.util.Collection
| |||||||||||
From interface java.util.List
|
Constructs a new instance of ArrayList
with zero capacity.
Constructs a new instance of ArrayList
with the specified
capacity.
capacity | the initial capacity of this ArrayList . |
---|
Constructs a new instance of ArrayList
containing the elements of
the specified collection. The initial size of the ArrayList
will
be 10% higher than the size of the specified collection.
collection | the collection of elements to add. |
---|
Inserts the specified object into this ArrayList
at the specified
location. The object is inserted before any previous element at the
specified location. If the location is equal to the size of this
ArrayList
, the object is added at the end.
location | the index at which to insert the object. |
---|---|
object | the object to add. |
IndexOutOfBoundsException | when location < 0 || > size() |
---|
Adds the specified object at the end of this ArrayList
.
object | the object to add. |
---|
Inserts the objects in the specified collection at the specified location in this List. The objects are added in the order they are returned from the collection's iterator.
location | the index at which to insert. |
---|---|
collection | the collection of objects. |
true
if this ArrayList
is modified, false
otherwise.IndexOutOfBoundsException | when location < 0 || > size() |
---|
Adds the objects in the specified collection to this ArrayList
.
collection | the collection of objects. |
---|
true
if this ArrayList
is modified, false
otherwise.Returns a new ArrayList
with the same elements, the same size and
the same capacity as this ArrayList
.
ArrayList
Searches this ArrayList
for the specified object.
object | the object to search for. |
---|
true
if object
is an element of this
ArrayList
, false
otherwiseEnsures that after this operation the ArrayList
can hold the
specified number of elements without further growing.
minimumCapacity | the minimum capacity asked for. |
---|
Returns the element at the specified location in this list.
location | the index of the element to return. |
---|
Searches this list for the specified object and returns the index of the first occurrence.
object | the object to search for. |
---|
Returns if this Collection
contains no elements. This implementation
tests, whether size
returns 0.
true
if this Collection
has no elements, false
otherwise.Searches this list for the specified object and returns the index of the last occurrence.
object | the object to search for. |
---|
Removes the object at the specified location from this list.
location | the index of the object to remove. |
---|
IndexOutOfBoundsException | when location < 0 || >= size() |
---|
Removes one instance of the specified object from this Collection
if one
is contained (optional). This implementation iterates over this
Collection
and tests for each element e
returned by the iterator,
whether e
is equal to the given object. If object != null
then this test is performed using object.equals(e)
, otherwise
using object == null
. If an element equal to the given object is
found, then the remove
method is called on the iterator and
true
is returned, false
otherwise. If the iterator does
not support removing elements, an UnsupportedOperationException
is thrown.
object | the object to remove. |
---|
true
if this Collection
is modified, false
otherwise.Replaces the element at the specified location in this ArrayList
with the specified object.
location | the index at which to put the specified object. |
---|---|
object | the object to add. |
IndexOutOfBoundsException | when location < 0 || >= size() |
---|
Returns the number of elements in this ArrayList
.
ArrayList
.Returns an array containing all elements contained in this
ArrayList
. If the specified array is large enough to hold the
elements, the specified array is used, otherwise an array of the same
type is created. If the specified array is used and is larger than this
ArrayList
, the array element following the collection elements
is set to null.
contents | the array. |
---|
ArrayList
.ArrayStoreException | when the type of an element in this ArrayList cannot
be stored in the type of the specified array. |
---|
Returns a new array containing all elements contained in this
ArrayList
.
ArrayList
Sets the capacity of this ArrayList
to be the same as the current
size.
Removes the objects in the specified range from the start to the end, but not including the end index.
start | the index at which to start removing. |
---|---|
end | the index one after the end of the range to remove. |
IndexOutOfBoundsException | when start < 0, start > end or end > size() |
---|