| Module: | libutil | Package: | org.milescript.util | Parent: | Object | Generated by MilescriptCompiler (Copyright 2008, Point5u LLC.) |
org.milescript.util.ArrayList<U>
Inheritance : Object
Constructors
| Signature |
| public ArrayList() |
Methods
| Name | Signature |
| add | boolean add(U object) |
| add | void add(int index, U element) |
| addAll | boolean addAll(Collection<U> c) |
| addAll | boolean addAll(int index, Collection<U> c) |
| clear | void clear() |
| contains | boolean contains(U object) |
| containsAll | boolean containsAll(Collection<U> c) |
| equals | boolean equals(Collection<U> c) |
| get | U get(int index) |
| indexOf | int indexOf(U object) |
| isEmpty | boolean isEmpty() |
| lastIndexOf | int lastIndexOf(U object) |
| remove | U remove(int index) |
| remove | boolean remove(U object) |
| removeAll | boolean removeAll(Collection<U> c) |
| removeRange | void removeRange(int fromIndex, int toIndex) |
| retainAll | boolean retainAll(Collection<U> c) |
| set | U set(int index, U element) |
| size | int size() |
| subList | List<U> subList(int fromIndex, int toIndex) |
| toArray | Array<U> toArray() |
Constructors
|
public ArrayList() Constructor. |
Methods
|
add boolean add(U object)
Parameters
|
||||||||||
|
add void add(int index, U element) Parameters
|
|
addAll boolean addAll(Collection<U> c)
Parameters
|
||||||||||
|
addAll boolean addAll(int index, Collection<U> c)
Parameters
|
|||||||||||||
|
clear void clear() |
|
contains boolean contains(U object)
Parameters
|
||||||||||
|
containsAll boolean containsAll(Collection<U> c)
Parameters
|
||||||||||
|
equals boolean equals(Collection<U> c)
Parameters
|
||||||||||
|
get U get(int index) Returns the element at the specified position in this list.
Parameters
|
||||||||||
|
indexOf int indexOf(U object)
Parameters
|
||||||||||
|
isEmpty boolean isEmpty()
|
||||
|
lastIndexOf int lastIndexOf(U object)
Parameters
|
||||||||||
|
remove U remove(int index)
Parameters
|
||||||||||
|
remove boolean remove(U object)
Parameters
|
||||||||||
|
removeAll boolean removeAll(Collection<U> c)
Parameters
|
||||||||||
|
removeRange void removeRange(int fromIndex, int toIndex) Removes from this list all of the elements whose index is between fromIndex, inclusive, and toIndex, exclusive. Parameters
|
|
retainAll boolean retainAll(Collection<U> c)
Parameters
|
||||||||||
|
set U set(int index, U element)
Parameters
|
|||||||||||||
|
size int size() Returns the number of elements in this list.
|
||||
|
subList List<U> subList(int fromIndex, int toIndex)
Parameters
|
|||||||||||||
|
toArray Array<U> toArray()
|
||||
| Module: | libutil | Package: | org.milescript.util | Parent: | Object | Generated by MilescriptCompiler (Copyright 2008, Point5u LLC.) |