public interface LinkedList<E>
| Modifier and Type | Method and Description |
|---|---|
void |
addHead(E e) |
void |
addTail(E e) |
void |
clear() |
void |
clearID() |
LinkedListIterator<E> |
iterator() |
E |
poll() |
E |
removeWithID(String listID,
long id)
you need to call
setNodeStore(NodeStore) before you are able to call this method. |
void |
setNodeStore(NodeStore<E> store)
this makes possibl to use
removeWithID(String, long) |
int |
size() |
void addHead(E e)
void addTail(E e)
E poll()
LinkedListIterator<E> iterator()
void clear()
int size()
void clearID()
void setNodeStore(NodeStore<E> store)
removeWithID(String, long)E removeWithID(String listID, long id)
setNodeStore(NodeStore) before you are able to call this method.Copyright © 2022 The Apache Software Foundation. All rights reserved.