public E getLast() { final Node<E> l = last; if (l == null) throw new NoSuchElementException(); return l.item; }