public class LinkList extends NativeObject implements java.util.List<Link>
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
Link element) |
boolean |
add(Link element) |
boolean |
addAll(java.util.Collection<? extends Link> elements) |
boolean |
addAll(int index,
java.util.Collection<? extends Link> elements) |
void |
clear() |
boolean |
contains(java.lang.Object object) |
boolean |
containsAll(java.util.Collection<?> objects) |
static LinkList |
createDynamicObject(long handle) |
Link |
get(int index) |
int |
indexOf(java.lang.Object obj) |
boolean |
isEmpty() |
java.util.Iterator<Link> |
iterator() |
int |
lastIndexOf(java.lang.Object obj) |
java.util.ListIterator<Link> |
listIterator() |
java.util.ListIterator<Link> |
listIterator(int index) |
Link |
remove(int index) |
boolean |
remove(java.lang.Object object) |
boolean |
removeAll(java.util.Collection<?> objects) |
boolean |
retainAll(java.util.Collection<?> objects) |
Link |
set(int index,
Link element) |
int |
size() |
java.util.List<Link> |
subList(int fromIndex,
int toIndex) |
java.lang.Object[] |
toArray() |
<T> T[] |
toArray(T[] array) |
equals, hashCode
public static LinkList createDynamicObject(long handle)
public boolean addAll(java.util.Collection<? extends Link> elements)
public boolean addAll(int index, java.util.Collection<? extends Link> elements)
addAll
in interface java.util.List<Link>
public boolean contains(java.lang.Object object)
public boolean containsAll(java.util.Collection<?> objects)
public boolean isEmpty()
public java.util.Iterator<Link> iterator()
public java.util.ListIterator<Link> listIterator()
listIterator
in interface java.util.List<Link>
public java.util.ListIterator<Link> listIterator(int index)
listIterator
in interface java.util.List<Link>
public boolean remove(java.lang.Object object)
public boolean removeAll(java.util.Collection<?> objects)
public boolean retainAll(java.util.Collection<?> objects)
public java.util.List<Link> subList(int fromIndex, int toIndex)
subList
in interface java.util.List<Link>
public java.lang.Object[] toArray()
public <T> T[] toArray(T[] array)
public int size()
public void clear()
public int indexOf(java.lang.Object obj)
indexOf
in interface java.util.List<Link>
public int lastIndexOf(java.lang.Object obj)
lastIndexOf
in interface java.util.List<Link>
public boolean add(Link element)