Package com.luciad.util
Class TLcdQueue
java.lang.Object
com.luciad.util.TLcdQueue
- All Implemented Interfaces:
ILcdQueue
This class provides a FIFO implementation of
ILcdQueue
(First In First Out).-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
TLcdQueue
public TLcdQueue()
-
-
Method Details
-
clear
public void clear()Clears this queue. -
isEmpty
public boolean isEmpty()Description copied from interface:ILcdQueueReturns true if the queue is empty, false otherwise. -
enqueue
Description copied from interface:ILcdQueueAdds a given object to the queue. -
dequeue
Description copied from interface:ILcdQueueGets and removes the first element from the queue.
-