Uses of Interface
org.apache.pivot.collections.Queue

Packages that use Queue
org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
org.apache.pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
 

Uses of Queue in org.apache.pivot.collections
 

Classes in org.apache.pivot.collections that implement Queue
 class ArrayQueue<T>
          Implementation of the Queue interface that is backed by an array.
 class LinkedQueue<T>
          Implementation of the Queue interface that is backed by a linked list.
 

Methods in org.apache.pivot.collections with parameters of type Queue
 void Queue.QueueListenerList.comparatorChanged(Queue<T> queue, Comparator<T> previousComparator)
           
 void QueueListener.comparatorChanged(Queue<T> queue, Comparator<T> previousComparator)
          Called when a queue's comparator has changed.
 void QueueListener.Adapter.comparatorChanged(Queue<T> queue, Comparator<T> previousComparator)
           
 void Queue.QueueListenerList.itemDequeued(Queue<T> queue, T item)
           
 void QueueListener.itemDequeued(Queue<T> queue, T item)
          Called when an item has been removed from the head of a queue.
 void QueueListener.Adapter.itemDequeued(Queue<T> queue, T item)
           
 void Queue.QueueListenerList.itemEnqueued(Queue<T> queue, T item)
           
 void QueueListener.itemEnqueued(Queue<T> queue, T item)
          Called when an item has been inserted into the tail of a queue.
 void QueueListener.Adapter.itemEnqueued(Queue<T> queue, T item)
           
 void Queue.QueueListenerList.queueCleared(Queue<T> queue)
           
 void QueueListener.queueCleared(Queue<T> queue)
          Called when a queue has been cleared.
 void QueueListener.Adapter.queueCleared(Queue<T> queue)
           
 

Uses of Queue in org.apache.pivot.collections.concurrent
 

Classes in org.apache.pivot.collections.concurrent that implement Queue
 class SynchronizedQueue<T>
          Synchronized implementation of the Queue interface.
 

Constructors in org.apache.pivot.collections.concurrent with parameters of type Queue
SynchronizedQueue(Queue<T> queue)