ArrayListAdapter
Overview
ArrayListAdapter is a class in Aspose.3D FOSS for Java.
Inherits from: List<T>.
This class provides 23 methods for working with ArrayListAdapter objects in Java programs.
Available methods include: add, addAll, clear, contains, containsAll, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, remove, and 6 additional methods.
All public members are accessible to any Java application after installing the Aspose.3D FOSS for Java package.
Properties: empty.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
empty | boolean | Read | Gets the empty. |
Methods
| Signature | Description |
|---|---|
size() → int | Calls size on this ArrayListAdapter instance. |
isEmpty() → boolean | Returns true if empty is set. |
contains(o: Object) → boolean | Calls contains(o) on this ArrayListAdapter instance. |
get(index: int) → T | Calls get(index) on this ArrayListAdapter instance. |
indexOf(o: Object) → int | Calls indexOf(o) on this ArrayListAdapter instance. |
lastIndexOf(o: Object) → int | Calls lastIndexOf(o) on this ArrayListAdapter instance. |
toArray() → Object[] | Calls toArray on this ArrayListAdapter instance. |
toArray(a: T1[]) → T1[] | Calls toArray(a) on this ArrayListAdapter instance. |
add(t: T) → boolean | Calls add(t) on this ArrayListAdapter instance. |
add(index: int, element: T) | Calls add(index, element) on this ArrayListAdapter instance. |
remove(index: int) → T | Calls remove(index) on this ArrayListAdapter instance. |
remove(o: Object) → boolean | Calls remove(o) on this ArrayListAdapter instance. |
containsAll(c: Collection<?>) → boolean | Calls containsAll(c) on this ArrayListAdapter instance. |
addAll(c: Collection<? extends T>) → boolean | Calls addAll(c) on this ArrayListAdapter instance. |
addAll(index: int, c: Collection<? extends T>) → boolean | Calls addAll(index, c) on this ArrayListAdapter instance. |
removeAll(c: Collection<?>) → boolean | Calls removeAll(c) on this ArrayListAdapter instance. |
retainAll(c: Collection<?>) → boolean | Calls retainAll(c) on this ArrayListAdapter instance. |
clear() | Calls clear on this ArrayListAdapter instance. |
subList(fromIndex: int, toIndex: int) → List<T> | Calls subList(fromIndex, toIndex) on this ArrayListAdapter instance. |
listIterator() → ListIterator<T> | Calls listIterator on this ArrayListAdapter instance. |
listIterator(index: int) → ListIterator<T> | Calls listIterator(index) on this ArrayListAdapter instance. |
iterator() → Iterator<T> | Calls iterator on this ArrayListAdapter instance. |
set(index: int, element: T) → T | Calls set(index, element) on this ArrayListAdapter instance. |