Interface LinkedList<E>

    • Method Detail

      • addHead

        void addHead​(E e)
      • addTail

        void addTail​(E e)
      • get

        E get​(int position)
      • poll

        E poll()
      • clear

        void clear()
      • size

        int size()
      • clearID

        void clearID()
      • removeWithID

        E removeWithID​(java.lang.String listID,
                       long id)
        you need to call setNodeStore(NodeStore) before you are able to call this method.
      • forEach

        void forEach​(java.util.function.Consumer<E> consumer)