| Module: | libutil | Package: | org.milescript.util | Parent: | Collection | Copyright (c) 2007, 2008 Point5U, LLC Milescript - LibUtil Library: Project Home | Documentation |
org.milescript.util.List<U>
Methods
|
add void add(int index, U element) Inserts the specified element at the specified position in this list (optional operation). Parameters
|
|
addAll void addAll(int index, Collection<U> c) Inserts all of the elements in the specified collection into this list at the specified position (optional operation). Parameters
|
|
get U get(int index) Returns the element at the specified position in this list.
Parameters
|
||||||||||
|
indexOf int indexOf(U object) Returns the index in this list of the first occurrence of the specified element, or -1 if this list does not contain this element.
Parameters
|
||||||||||
|
lastIndexOf int lastIndexOf(U object) Returns the index in this list of the last occurrence of the specified element, or -1 if this list does not contain this element.
Parameters
|
||||||||||
|
remove U remove(int index) Removes the element at the specified position in this list (optional operation).
Parameters
|
||||||||||
|
set U set(int index, U element) Replaces the element at the specified position in this list with the specified element (optional operation).
Parameters
|
|||||||||||||
|
subList List<U> subList(int fromIndex, int toIndex) Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive.
Parameters
|
|||||||||||||