Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

de.lmu.ifi.dbs.elki.utilities
Class Queue.QueueElement

java.lang.Object
  extended by de.lmu.ifi.dbs.elki.utilities.Queue.QueueElement
Enclosing class:
Queue<O>

final class Queue.QueueElement
extends Object

An element in the queue: holds the underlying objcet and the next element in the queue.


Field Summary
private  Queue.QueueElement next
          Points to the next element in the queue, null if end of queue is reached.
private  O object
          Holds the underlying object.
 
Constructor Summary
private Queue.QueueElement(O object, Queue.QueueElement next)
          Provides a new element in the queue.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

object

private O object
Holds the underlying object.


next

private Queue.QueueElement next
Points to the next element in the queue, null if end of queue is reached.

Constructor Detail

Queue.QueueElement

private Queue.QueueElement(O object,
                           Queue.QueueElement next)
Provides a new element in the queue.

Parameters:
object - the underlying object
next - the next element in the queue

Release 0.1 (2008-07-10_1838)