public interface LinkedList<E>
Modifier and Type | Method and Description |
---|---|
void |
addHead(E e) |
void |
addTail(E e) |
void |
clear() |
LinkedListIterator<E> |
iterator() |
E |
poll() |
int |
size() |
void addHead(E e)
void addTail(E e)
E poll()
LinkedListIterator<E> iterator()
void clear()
int size()
Copyright © 2018 JBoss by Red Hat. All rights reserved.