Uses of Interface
QueueInterface

Uses of QueueInterface in <Unnamed>
 

Methods in <Unnamed> that return QueueInterface
static QueueInterface<java.lang.Integer> Driver.createIntegerTestQueue(Driver.QueueType queueType, int firstNumber, int lastNumber)
          This method is called by the runTestCase() method to obtain an Integer test queue.
static QueueInterface<java.lang.String> Driver.createStringTestQueue(Driver.QueueType queueType, int firstString, int lastString)
          This method is called by the runTestCase() method to obtain an Integer test queue.
static QueueInterface<java.lang.Integer> Driver.initializeIntegerTestQueue(QueueInterface<java.lang.Integer> testQueue, int firstNumber, int lastNumber)
          This method is called by the createIntegerTestQueue() method to initialize the test queue.
static QueueInterface<java.lang.String> Driver.initializeStringTestQueue(QueueInterface<java.lang.String> testQueue, int firstString, int lastString)
          This method is called by the createStringTestQueue() method to initialize the test queue.
 

Methods in <Unnamed> with parameters of type QueueInterface
static QueueInterface<java.lang.Integer> Driver.initializeIntegerTestQueue(QueueInterface<java.lang.Integer> testQueue, int firstNumber, int lastNumber)
          This method is called by the createIntegerTestQueue() method to initialize the test queue.
static QueueInterface<java.lang.String> Driver.initializeStringTestQueue(QueueInterface<java.lang.String> testQueue, int firstString, int lastString)
          This method is called by the createStringTestQueue() method to initialize the test queue.
 

Constructors in <Unnamed> with parameters of type QueueInterface
QueueIterator(QueueInterface<E> theQueue)
           
QueueIterator(java.util.Vector<E> elements, QueueInterface<E> theQueue)