Class AbstractList<E>
- All Implemented Interfaces:
Iterable<E>, Collection<E>, List<E>
- Direct Known Subclasses:
AbstractSequentialList, ArrayList, Vector
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.
Since
1.2
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructs a new instance of this AbstractList. -
Method Summary
Modifier and TypeMethodDescriptionvoidInserts the specified object into this List at the specified location.booleanAdds the specified object at the end of this List.booleanaddAll(int location, Collection<? extends E> collection) Inserts the objects in the specified Collection at the specified location in this List.voidclear()Removes all elements from this list, leaving it empty.booleanCompares the specified object to this list and return true if they are equal.abstract Eget(int location) Returns the element at the specified location in this list.inthashCode()Returns the hash code of this list.intSearches this list for the specified object and returns the index of the first occurrence.iterator()Returns an iterator on the elements of this list.intlastIndexOf(Object object) Searches this list for the specified object and returns the index of the last occurrence.Returns a ListIterator on the elements of this list.listIterator(int location) Returns a list iterator on the elements of this list.remove(int location) Removes the object at the specified location from this list.protected voidremoveRange(int start, int end) Removes the objects in the specified range from the start to the end index minus one.Replaces the element at the specified location in this list with the specified object.subList(int start, int end) Returns a part of consecutive elements of this list as a view.Object[]toArray()Returns a new array containing all elements contained in thisArrayList.<T> T[]toArray(T[] contents) Returns an array containing all elements contained in thisArrayList.Methods inherited from class AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toString
-
Field Details
-
modCount
protected transient int modCountA counter for changes to the list.
-
-
Constructor Details
-
AbstractList
protected AbstractList()Constructs a new instance of this AbstractList.
-
-
Method Details
-
add
Inserts the specified object into this List 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 List, the object is added at the end.
Concrete implementations that would like to support the add functionality must override this method.
Parameters
-
location: the index at which to insert. -
object: the object to add.
Throws
-
UnsupportedOperationException: if adding to this List is not supported. -
ClassCastException: @throws ClassCastException if the class of the object is inappropriate for this List -
IllegalArgumentException: if the object cannot be added to this List -
IndexOutOfBoundsException: iflocation = size()
-
-
add
Adds the specified object at the end of this List.
Parameters
object: the object to add
Returns
true
Throws
-
UnsupportedOperationException: if adding to this List is not supported -
ClassCastException: @throws ClassCastException if the class of the object is inappropriate for this List -
IllegalArgumentException: if the object cannot be added to this List
- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceList<E>- Overrides:
addin classAbstractCollection<E>- Returns:
trueif thisCollectionis modified,falseotherwise.Throws
-
UnsupportedOperationException: if adding to thisCollectionis not supported. -
ClassCastException: @throws ClassCastException if the class of the object is inappropriate for this collection. -
IllegalArgumentException: if the object cannot be added to thisCollection. -
NullPointerException: if null elements cannot be added to theCollection.
-
-
addAll
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.
Parameters
-
location: the index at which to insert. -
collection: the Collection of objects
Returns
trueif this List is modified,falseotherwise.Throws
-
UnsupportedOperationException: if adding to this list is not supported. -
ClassCastException: if the class of an object is inappropriate for this list. -
IllegalArgumentException: if an object cannot be added to this list. -
IndexOutOfBoundsException: iflocation size()
- Specified by:
addAllin interfaceList<E>- Returns:
true if this
Listhas been modified through the insertion, false otherwise (i.e. if the passed collection was empty).Throws
-
UnsupportedOperationException: if adding to thisListis not supported. -
ClassCastException: @throws ClassCastException if the class of an object is inappropriate for thisList. -
IllegalArgumentException: if an object cannot be added to thisList. -
IndexOutOfBoundsException: iflocation size()
-
-
-
clear
public void clear()Removes all elements from this list, leaving it empty.
Throws
UnsupportedOperationException: if removing from this list is not supported.
See also
-
List#isEmpty
-
List#size
- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceList<E>- Overrides:
clearin classAbstractCollection<E>
-
equals
Compares the specified object to this list and return true if they are equal. Two lists are equal when they both contain the same objects in the same order.
Parameters
object: the object to compare to this object.
Returns
-
get
-
hashCode
public int hashCode()Returns the hash code of this list. The hash code is calculated by taking each element's hashcode into account.
Returns
the hash code.
See also
-
#equals
-
List#hashCode()
-
-
indexOf
Searches this list for the specified object and returns the index of the first occurrence.
Parameters
object: the object to search for.
Returns
-
iterator
Returns an iterator on the elements of this list. The elements are iterated in the same order as they occur in the list.
Returns
an iterator on the elements of this list.
See also
- Iterator
-
lastIndexOf
Searches this list for the specified object and returns the index of the last occurrence.
Parameters
object: the object to search for.
Returns
- Specified by:
lastIndexOfin interfaceList<E>- Returns:
- the index of the last occurrence of the object, or -1 if the object was not found.
-
listIterator
Returns a ListIterator on the elements of this list. The elements are iterated in the same order that they occur in the list.
Returns
a ListIterator on the elements of this list
See also
- ListIterator
- Specified by:
listIteratorin interfaceList<E>
-
listIterator
Returns a list iterator on the elements of this list. The elements are iterated in the same order as they occur in the list. The iteration starts at the specified location.
Parameters
location: the index at which to start the iteration.
Returns
a ListIterator on the elements of this list.
Throws
IndexOutOfBoundsException: iflocation size()
See also
- ListIterator
- Specified by:
listIteratorin interfaceList<E>
-
remove
Removes the object at the specified location from this list.
Parameters
location: the index of the object to remove.
Returns
the removed object.
Throws
-
UnsupportedOperationException: if removing from this list is not supported. -
IndexOutOfBoundsException: iflocation = size()
-
removeRange
protected void removeRange(int start, int end) Removes the objects in the specified range from the start to the end index minus one.
Parameters
-
start: the index at which to start removing. -
end: the index after the last element to remove.
Throws
-
UnsupportedOperationException: if removing from this list is not supported. -
IndexOutOfBoundsException: ifstart = size().
-
-
set
Replaces the element at the specified location in this list with the specified object.
Parameters
-
location: the index at which to put the specified object. -
object: the object to add.
Returns
the previous element at the index.
Throws
-
UnsupportedOperationException: if replacing elements in this list is not supported. -
ClassCastException: if the class of an object is inappropriate for this list. -
IllegalArgumentException: if an object cannot be added to this list. -
IndexOutOfBoundsException: iflocation = size()
-
-
subList
Returns a part of consecutive elements of this list as a view. The returned view will be of zero length if start equals end. Any change that occurs in the returned subList will be reflected to the original list, and vice-versa. All the supported optional operations by the original list will also be supported by this subList.
This method can be used as a handy method to do some operations on a sub range of the original list, for example
list.subList(from, to).clear();If the original list is modified in other ways than through the returned subList, the behavior of the returned subList becomes undefined.
The returned subList is a subclass of AbstractList. The subclass stores offset, size of itself, and modCount of the original list. If the original list implements RandomAccess interface, the returned subList also implements RandomAccess interface.
The subList's set(int, Object), get(int), add(int, Object), remove(int), addAll(int, Collection) and removeRange(int, int) methods first check the bounds, adjust offsets and then call the corresponding methods of the original AbstractList. addAll(Collection c) method of the returned subList calls the original addAll(offset + size, c).
The listIterator(int) method of the subList wraps the original list iterator. The iterator() method of the subList invokes the original listIterator() method, and the size() method merely returns the size of the subList.
All methods will throw a ConcurrentModificationException if the modCount of the original list is not equal to the expected value.
Parameters
-
start: start index of the subList (inclusive). -
end: end index of the subList, (exclusive).
Returns
-
-
toArray
Returns a new array containing all elements contained in this
ArrayList.Returns
an array of the elements from this
ArrayList- Specified by:
toArrayin interfaceCollection<E>- Specified by:
toArrayin interfaceList<E>- Overrides:
toArrayin classAbstractCollection<E>
-
toArray
public <T> T[] toArray(T[] contents) 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 thisArrayList, the array element following the collection elements is set to null.Parameters
contents: the array.
Returns
an array of the elements from this
ArrayList.Throws
ArrayStoreException: @throws ArrayStoreException when the type of an element in thisArrayListcannot be stored in the type of the specified array.
- Specified by:
toArrayin interfaceCollection<E>- Specified by:
toArrayin interfaceList<E>- Overrides:
toArrayin classAbstractCollection<E>
-