Class LinkedBlockingDeque.Node<E>

  • Enclosing class:
    LinkedBlockingDeque<E>

    private static final class LinkedBlockingDeque.Node<E>
    extends java.lang.Object
    Doubly-linked list node class
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) E item
      The item, or null if this node has been removed.
      (package private) LinkedBlockingDeque.Node<E> next
      One of: - the real successor Node - this Node, meaning the successor is head - null, meaning there is no successor
      (package private) LinkedBlockingDeque.Node<E> prev
      One of: - the real predecessor Node - this Node, meaning the predecessor is tail - null, meaning there is no predecessor
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • item

        E item
        The item, or null if this node has been removed.
      • prev

        LinkedBlockingDeque.Node<E> prev
        One of: - the real predecessor Node - this Node, meaning the predecessor is tail - null, meaning there is no predecessor
      • next

        LinkedBlockingDeque.Node<E> next
        One of: - the real successor Node - this Node, meaning the successor is head - null, meaning there is no successor