Package com.luciad.util
Interface ILcdQueue
- All Known Implementing Classes:
TLcdQueue
public interface ILcdQueue
This interface defines a set of methods for implementing a queue.
-
Method Summary
-
Method Details
-
isEmpty
boolean isEmpty()Returns true if the queue is empty, false otherwise.- Returns:
- true if the queue is empty, false otherwise.
-
enqueue
Adds a given object to the queue.- Parameters:
aObject
- theObject
to be added to the queue.
-
dequeue
Object dequeue()Gets and removes the first element from the queue.- Returns:
- the first element.
-