A Java List
that wraps a Ceylon List
.
This list is unmodifiable, throwing
UnsupportedOperationException
from mutator
methods.
Anything
Object
Basic
...and other supertypesAbstractCollection
...and other supertypesAbstractList
...and other supertypesno subtypes hierarchy
Initializer |
JavaList(List<E?> list) |
Inherited Attributes |
Attributes inherited from: AbstractCollection<E> empty , string |
Attributes inherited from: AbstractList<E> hash , modCount |
Attributes inherited from: Object |
Methods | |
add | Source Codeshared actual Boolean add(E? e) Annotations:
Refines AbstractList.add ultimately refines Collection.add |
add | Source Codeshared actual void add(Integer index, E? e) Annotations:
Refines AbstractList.add ultimately refines List.add |
clear | Source Codeshared actual void clear() Refines AbstractList.clear ultimately refines Collection.clear |
get | Source Codeshared actual E get(Integer int) Refines AbstractList.get ultimately refines List.get |
iterator | Source Codeshared actual Iterator<E> iterator() Refines AbstractList.iterator ultimately refines Iterable.iterator |
remove | Source Codeshared actual Boolean remove(Object? e) Refines AbstractList.remove ultimately refines Collection.remove |
removeAll | Source Codeshared actual Boolean removeAll(Collection<out Object> collection) Refines AbstractCollection.removeAll ultimately refines Collection.removeAll |
retainAll | Source Codeshared actual Boolean retainAll(Collection<out Object> collection) Refines AbstractCollection.retainAll ultimately refines Collection.retainAll |
set | Source Codeshared actual E? set(Integer index, E? e) Refines AbstractList.set ultimately refines List.set |
size | Source Codeshared actual Integer size() Refines AbstractCollection.size ultimately refines Collection.size |
Inherited Methods |
Methods inherited from: AbstractCollection<E> add , addAll , clear , contains , containsAll , iterator , remove , removeAll , retainAll , size , toArray |
Methods inherited from: AbstractList<E> add , addAll , clear , equals , get , indexOf , iterator , lastIndexOf , listIterator , remove , removeRange , set , subList |
Methods inherited from: Object |