Interface LinkedList<E>

All Superinterfaces:
Collection<E>, Iterable<E>, List<E>, Queue<E>

public interface LinkedList<E> extends List<E>, Queue<E>
Interface for linked lists. This interface is missing from the Java collections API.
  • Method Details

    • addFirst

      void addFirst(E obj)
    • addLast

      void addLast(E obj)
    • getFirst

      E getFirst()
    • getLast

      E getLast()
    • removeFirst

      E removeFirst()
    • removeLast

      E removeLast()