Uses of Class
net.datastructures.EmptyDequeException

Uses of EmptyDequeException in net.datastructures
 

Methods in net.datastructures that throw EmptyDequeException
 E NodeDeque.getFirst()
          Inspect the first element without modifying the deque.
 E Deque.getFirst()
          Returns the first element; an exception is thrown if deque is empty.
 E NodeDeque.getLast()
           
 E Deque.getLast()
          Returns the last element; an exception is thrown if deque is empty.
 E NodeDeque.removeFirst()
           
 E Deque.removeFirst()
          Removes the first element; an exception is thrown if deque is empty.
 E NodeDeque.removeLast()
           
 E Deque.removeLast()
          Removes the last element; an exception is thrown if deque is empty.