Adds value at the end of the queue.
value
void add(E value) { _sentinel._prepend(value); _elementCount++; }