Uses of Class
weka.core.Queue.QueueNode

Packages that use Queue.QueueNode
weka.core   
 

Uses of Queue.QueueNode in weka.core
 

Fields in weka.core declared as Queue.QueueNode
protected  Queue.QueueNode Queue.m_Head
          Store a reference to the head of the queue
protected  Queue.QueueNode Queue.m_Tail
          Store a reference to the tail of the queue
protected  Queue.QueueNode Queue.QueueNode.m_Next
          The next node in the queue
 

Methods in weka.core that return Queue.QueueNode
 Queue.QueueNode Queue.QueueNode.next(Queue.QueueNode next)
          Sets the next node in the queue, and returns it.
 Queue.QueueNode Queue.QueueNode.next()
          Gets the next node in the queue.
 

Methods in weka.core with parameters of type Queue.QueueNode
 Queue.QueueNode Queue.QueueNode.next(Queue.QueueNode next)
          Sets the next node in the queue, and returns it.