public E getFirst() { final Node<E> f = first; if (f == null) throw new NoSuchElementException(); return f.item; }