Class LinkedListImpl<E>

  • All Implemented Interfaces:
    LinkedList<E>

    public class LinkedListImpl<E>
    extends Object
    implements LinkedList<E>
    A linked list implementation which allows multiple iterators to exist at the same time on the queue, and which see any elements added or removed from the queue either directly or via iterators.

    This class is not thread safe.