Java Doc for Queue.java in  » 6.0-JDK-Core » Collections-Jar-Zip-Logging-regex » java » util » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » Collections Jar Zip Logging regex » java.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.util.Queue

Queue
public interface Queue extends Collection<E>(Code)
A collection designed for holding elements prior to processing. Besides basic java.util.Collection Collection operations, queues provide additional insertion, extraction, and inspection operations. Each of these methods exists in two forms: one throws an exception if the operation fails, the other returns a special value (either null or false, depending on the operation). The latter form of the insert operation is designed specifically for use with capacity-restricted Queue implementations; in most implementations, insert operations cannot fail.

Throws exception Returns special value
Insert Queue.add add(e) Queue.offer offer(e)
Remove Queue.remove remove() Queue.poll poll()
Examine Queue.element element() Queue.peek peek()

Queues typically, but do not necessarily, order elements in a FIFO (first-in-first-out) manner. Among the exceptions are priority queues, which order elements according to a supplied comparator, or the elements' natural ordering, and LIFO queues (or stacks) which order the elements LIFO (last-in-first-out). Whatever the ordering used, the head of the queue is that element which would be removed by a call to Queue.remove() or Queue.poll() . In a FIFO queue, all new elements are inserted at the tail of the queue. Other kinds of queues may use different placement rules. Every Queue implementation must specify its ordering properties.

The Queue.offer offer method inserts an element if possible, otherwise returning false. This differs from the java.util.Collection.add Collection.add method, which can fail to add an element only by throwing an unchecked exception. The offer method is designed for use when failure is a normal, rather than exceptional occurrence, for example, in fixed-capacity (or "bounded") queues.

The Queue.remove() and Queue.poll() methods remove and return the head of the queue. Exactly which element is removed from the queue is a function of the queue's ordering policy, which differs from implementation to implementation. The remove() and poll() methods differ only in their behavior when the queue is empty: the remove() method throws an exception, while the poll() method returns null.

The Queue.element() and Queue.peek() methods return, but do not remove, the head of the queue.

The Queue interface does not define the blocking queue methods, which are common in concurrent programming. These methods, which wait for elements to appear or for space to become available, are defined in the java.util.concurrent.BlockingQueue interface, which extends this interface.

Queue implementations generally do not allow insertion of null elements, although some implementations, such as LinkedList , do not prohibit insertion of null. Even in the implementations that permit it, null should not be inserted into a Queue, as null is also used as a special return value by the poll method to indicate that the queue contains no elements.

Queue implementations generally do not define element-based versions of methods equals and hashCode but instead inherit the identity based versions from class Object, because element-based equality is not always well-defined for queues with the same elements but different ordering properties.

This interface is a member of the Java Collections Framework.
See Also:   java.util.Collection
See Also:   LinkedList
See Also:   PriorityQueue
See Also:   java.util.concurrent.LinkedBlockingQueue
See Also:   java.util.concurrent.BlockingQueue
See Also:   java.util.concurrent.ArrayBlockingQueue
See Also:   java.util.concurrent.LinkedBlockingQueue
See Also:   java.util.concurrent.PriorityBlockingQueue
since:
   1.5
author:
   Doug Lea<
Parameters:
  E - > the type of elements held in this collection





Method Summary
 booleanadd(E e)
     Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions, returning true upon success and throwing an IllegalStateException if no space is currently available.
 Eelement()
     Retrieves, but does not remove, the head of this queue.
 booleanoffer(E e)
     Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions.
 Epeek()
     Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty.
 Epoll()
     Retrieves and removes the head of this queue, or returns null if this queue is empty.
 Eremove()
     Retrieves and removes the head of this queue.



Method Detail
add
boolean add(E e)(Code)
Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions, returning true upon success and throwing an IllegalStateException if no space is currently available.
Parameters:
  e - the element to add true (as specified by Collection.add)
throws:
  IllegalStateException - if the element cannot be added at thistime due to capacity restrictions
throws:
  ClassCastException - if the class of the specified elementprevents it from being added to this queue
throws:
  NullPointerException - if the specified element is null andthis queue does not permit null elements
throws:
  IllegalArgumentException - if some property of this elementprevents it from being added to this queue



element
E element()(Code)
Retrieves, but does not remove, the head of this queue. This method differs from Queue.peek peek only in that it throws an exception if this queue is empty. the head of this queue
throws:
  NoSuchElementException - if this queue is empty



offer
boolean offer(E e)(Code)
Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions. When using a capacity-restricted queue, this method is generally preferable to Queue.add , which can fail to insert an element only by throwing an exception.
Parameters:
  e - the element to add true if the element was added to this queue, elsefalse
throws:
  ClassCastException - if the class of the specified elementprevents it from being added to this queue
throws:
  NullPointerException - if the specified element is null andthis queue does not permit null elements
throws:
  IllegalArgumentException - if some property of this elementprevents it from being added to this queue



peek
E peek()(Code)
Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty. the head of this queue, or null if this queue is empty



poll
E poll()(Code)
Retrieves and removes the head of this queue, or returns null if this queue is empty. the head of this queue, or null if this queue is empty



remove
E remove()(Code)
Retrieves and removes the head of this queue. This method differs from Queue.poll poll only in that it throws an exception if this queue is empty. the head of this queue
throws:
  NoSuchElementException - if this queue is empty



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.