public class ArrayAsArrayList extends ArrayList
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
Object element) |
boolean |
add(Object o) |
boolean |
addAll(Collection c) |
boolean |
addAll(int index,
Collection c) |
void |
clear() |
Object |
clone() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection c) |
void |
ensureCapacity(int minCapacity) |
Object |
get(int index) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator |
listIterator() |
ListIterator |
listIterator(int index) |
Object |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection c) |
boolean |
retainAll(Collection c) |
Object |
set(int index,
Object element) |
int |
size() |
List |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
Object[] |
toArray(Object[] a) |
static ArrayList |
toArrayList(Array array) |
void |
trimToSize() |
equals, hashCode
toString
public static ArrayList toArrayList(Array array)
public boolean addAll(Collection c)
public boolean addAll(int index, Collection c)
public void clear()
public boolean containsAll(Collection c)
containsAll
in interface Collection
containsAll
in interface List
containsAll
in class AbstractCollection
public boolean isEmpty()
public int lastIndexOf(Object o)
lastIndexOf
in interface List
lastIndexOf
in class ArrayList
public ListIterator listIterator()
listIterator
in interface List
listIterator
in class ArrayList
public ListIterator listIterator(int index)
listIterator
in interface List
listIterator
in class ArrayList
public boolean removeAll(Collection c)
public boolean retainAll(Collection c)
public int size()
public void ensureCapacity(int minCapacity)
ensureCapacity
in class ArrayList
public void trimToSize()
trimToSize
in class ArrayList
Copyright © 2015 Lucee