/* * Answers the last element in this TreeSet. * * @return the last element * * @exception NoSuchElementException * when this TreeSet is empty */ public E last() { return(backingMap.lastKey()); }