Interface TLinkable

    • Method Summary

      Modifier and Type Method and Description
      TLinkable getNext()
      Returns the linked list node after this one.
      TLinkable getPrevious()
      Returns the linked list node before this one.
      void setNext(TLinkable linkable)
      Sets the linked list node after this one.
      void setPrevious(TLinkable linkable)
      Sets the linked list node before this one.
    • Method Detail

      • getNext

        TLinkable getNext()
        Returns the linked list node after this one.
        Returns:
        a TLinkable value
      • getPrevious

        TLinkable getPrevious()
        Returns the linked list node before this one.
        Returns:
        a TLinkable value
      • setNext

        void setNext(TLinkable linkable)
        Sets the linked list node after this one.
        Parameters:
        linkable - a TLinkable value
      • setPrevious

        void setPrevious(TLinkable linkable)
        Sets the linked list node before this one.
        Parameters:
        linkable - a TLinkable value