Class DefaultLinkedListEntry<E>

    • Constructor Detail

      • DefaultLinkedListEntry

        public DefaultLinkedListEntry​(E element)
        Constructor.
        Parameters:
        element - the element to be stored at this entry.
    • Method Detail

      • getElement

        public E getElement()
        Description copied from interface: LinkedListEntry
        Retrieves the element stored at this position in the list.
        Returns:
        the element.
      • setElement

        public void setElement​(E element)
        Sets the stored element to the specified element.
        Parameters:
        element - the new stored element.