Home » openjdk-7 » java » util » [javadoc | source]
java.util
static class: Collections.AsLIFOQueue [javadoc | source]
java.lang.Object
   java.util.AbstractCollection<E>
      java.util.AbstractQueue<E>
         java.util.Collections$AsLIFOQueue

All Implemented Interfaces:
    Queue, Serializable, Collection

Constructor:
 AsLIFOQueue(Deque<E> q) 
Method from java.util.Collections$AsLIFOQueue Summary:
add,   clear,   contains,   containsAll,   element,   isEmpty,   iterator,   offer,   peek,   poll,   remove,   remove,   removeAll,   retainAll,   size,   toArray,   toArray,   toString
Methods from java.util.AbstractQueue:
add,   addAll,   clear,   element,   remove
Methods from java.util.AbstractCollection:
add,   addAll,   clear,   contains,   containsAll,   isEmpty,   iterator,   remove,   removeAll,   retainAll,   size,   toArray,   toArray,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.util.Collections$AsLIFOQueue Detail:
 public boolean add(E e) 
 public  void clear() 
 public boolean contains(Object o) 
 public boolean containsAll(Collection<?> c) 
 public E element() 
 public boolean isEmpty() 
 public Iterator<E> iterator() 
 public boolean offer(E e) 
 public E peek() 
 public E poll() 
 public E remove() 
 public boolean remove(Object o) 
 public boolean removeAll(Collection<?> c) 
 public boolean retainAll(Collection<?> c) 
 public int size() 
 public Object[] toArray() 
 public T[] toArray(T[] a) 
 public String toString()