Constructor and Description |
---|
RestList(List<Object> lst,
Backtrace bt) |
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
Object element) |
boolean |
add(Object obj) |
boolean |
addAll(Collection<? extends Object> col) |
boolean |
addAll(int index,
Collection<? extends Object> col) |
void |
clear() |
boolean |
contains(Object obj) |
boolean |
containsAll(Collection<?> col) |
Object |
get(int index) |
int |
indexOf(Object obj) |
boolean |
isEmpty() |
Iterator<Object> |
iterator() |
int |
lastIndexOf(Object obj) |
ListIterator<Object> |
listIterator() |
ListIterator<Object> |
listIterator(int index) |
Object |
remove(int index) |
boolean |
remove(Object obj) |
boolean |
removeAll(Collection<? extends Object> col) |
boolean |
retainAll(Collection<? extends Object> col) |
Object |
set(int index,
Object element) |
int |
size() |
List<Object> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] array) |
String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
equals, hashCode, replaceAll, sort, spliterator
parallelStream, removeIf, stream
public int size()
public boolean isEmpty()
public boolean contains(Object obj)
public Object[] toArray()
public <T> T[] toArray(T[] array)
public boolean add(Object obj)
public boolean remove(Object obj)
public boolean containsAll(Collection<?> col)
containsAll
in interface Collection<Object>
containsAll
in interface List<Object>
public boolean addAll(Collection<? extends Object> col)
public boolean addAll(int index, Collection<? extends Object> col)
public boolean removeAll(Collection<? extends Object> col)
public boolean retainAll(Collection<? extends Object> col)
public void clear()
public int lastIndexOf(Object obj)
lastIndexOf
in interface List<Object>
public ListIterator<Object> listIterator()
listIterator
in interface List<Object>
public ListIterator<Object> listIterator(int index)
listIterator
in interface List<Object>
Copyright © 2022. All rights reserved.