ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/Deque.java
(Generate patch)

Comparing jsr166/src/main/java/util/Deque.java (file contents):
Revision 1.5 by jsr166, Fri Apr 29 02:00:39 2005 UTC vs.
Revision 1.27 by jsr166, Fri Aug 2 22:47:35 2013 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea and Josh Bloch with assistance from members of
3   * JCP JSR-166 Expert Group and released to the public domain, as explained
4 < * at http://creativecommons.org/licenses/publicdomain
4 > * at http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   package java.util;
# Line 9 | Line 9 | package java.util;
9   /**
10   * A linear collection that supports element insertion and removal at
11   * both ends.  The name <i>deque</i> is short for "double ended queue"
12 < * and is usually pronounced "deck".  Most <tt>Deque</tt>
12 > * and is usually pronounced "deck".  Most {@code Deque}
13   * implementations place no fixed limits on the number of elements
14   * they may contain, but this interface supports capacity-restricted
15   * deques as well as those with no fixed size limit.
# Line 18 | Line 18 | package java.util;
18   * ends of the deque.  Methods are provided to insert, remove, and
19   * examine the element.  Each of these methods exists in two forms:
20   * one throws an exception if the operation fails, the other returns a
21 < * special value (either <tt>null</tt> or <tt>false</tt>, depending on
21 > * special value (either {@code null} or {@code false}, depending on
22   * the operation).  The latter form of the insert operation is
23   * designed specifically for use with capacity-restricted
24 < * <tt>Deque</tt> implementations; in most implementations, insert
24 > * {@code Deque} implementations; in most implementations, insert
25   * operations cannot fail.
26   *
27   * <p>The twelve methods described above are summarized in the
28   * following table:
29   *
30 < * <p><table BORDER CELLPADDING=3 CELLSPACING=1>
30 > * <p>
31 > * <table BORDER CELLPADDING=3 CELLSPACING=1>
32 > * <caption>Summary of Deque methods</caption>
33   *  <tr>
34   *    <td></td>
35   *    <td ALIGN=CENTER COLSPAN = 2> <b>First Element (Head)</b></td>
# Line 36 | Line 38 | package java.util;
38   *  <tr>
39   *    <td></td>
40   *    <td ALIGN=CENTER><em>Throws exception</em></td>
41 < *    <td ALIGN=CENTER><em>Returns special value</em></td>
41 > *    <td ALIGN=CENTER><em>Special value</em></td>
42   *    <td ALIGN=CENTER><em>Throws exception</em></td>
43 < *    <td ALIGN=CENTER><em>Returns special value</em></td>
43 > *    <td ALIGN=CENTER><em>Special value</em></td>
44   *  </tr>
45   *  <tr>
46   *    <td><b>Insert</b></td>
47 < *    <td>{@link #addFirst addFirst(e)}</td>
48 < *    <td>{@link #offerFirst offerFirst(e)}</td>
49 < *    <td>{@link #addLast addLast(e)}</td>
50 < *    <td>{@link #offerLast offerLast(e)}</td>
47 > *    <td>{@link Deque#addFirst addFirst(e)}</td>
48 > *    <td>{@link Deque#offerFirst offerFirst(e)}</td>
49 > *    <td>{@link Deque#addLast addLast(e)}</td>
50 > *    <td>{@link Deque#offerLast offerLast(e)}</td>
51   *  </tr>
52   *  <tr>
53   *    <td><b>Remove</b></td>
54 < *    <td>{@link #removeFirst removeFirst()}</td>
55 < *    <td>{@link #pollFirst pollFirst()}</td>
56 < *    <td>{@link #removeLast removeLast()}</td>
57 < *    <td>{@link #pollLast pollLast()}</td>
54 > *    <td>{@link Deque#removeFirst removeFirst()}</td>
55 > *    <td>{@link Deque#pollFirst pollFirst()}</td>
56 > *    <td>{@link Deque#removeLast removeLast()}</td>
57 > *    <td>{@link Deque#pollLast pollLast()}</td>
58   *  </tr>
59   *  <tr>
60   *    <td><b>Examine</b></td>
61 < *    <td>{@link #getFirst getFirst()}</td>
62 < *    <td>{@link #peekFirst peekFirst()}</td>
63 < *    <td>{@link #getLast getLast()}</td>
64 < *    <td>{@link #peekLast peekLast()}</td>
61 > *    <td>{@link Deque#getFirst getFirst()}</td>
62 > *    <td>{@link Deque#peekFirst peekFirst()}</td>
63 > *    <td>{@link Deque#getLast getLast()}</td>
64 > *    <td>{@link Deque#peekLast peekLast()}</td>
65   *  </tr>
66   * </table>
67   *
68   * <p>This interface extends the {@link Queue} interface.  When a deque is
69   * used as a queue, FIFO (First-In-First-Out) behavior results.  Elements are
70   * added at the end of the deque and removed from the beginning.  The methods
71 < * inherited from the <tt>Queue</tt> interface are precisely equivalent to
72 < * <tt>Deque</tt> methods as indicated in the following table:
71 > * inherited from the {@code Queue} interface are precisely equivalent to
72 > * {@code Deque} methods as indicated in the following table:
73   *
74 < * <p><table BORDER CELLPADDING=3 CELLSPACING=1>
75 < *  <tr>
76 < *    <td ALIGN=CENTER> <b><tt>Queue</tt> Method</b></td>
75 < *    <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
76 < *  </tr>
74 > * <p>
75 > * <table BORDER CELLPADDING=3 CELLSPACING=1>
76 > * <caption>Comparison of Queue and Deque methods</caption>
77   *  <tr>
78 < *    <td>{@link java.util.Queue#offer offer(e)}</td>
79 < *    <td>{@link #offerLast offerLast(e)}</td>
78 > *    <td ALIGN=CENTER> <b>{@code Queue} Method</b></td>
79 > *    <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
80   *  </tr>
81   *  <tr>
82   *    <td>{@link java.util.Queue#add add(e)}</td>
83   *    <td>{@link #addLast addLast(e)}</td>
84   *  </tr>
85   *  <tr>
86 < *    <td>{@link java.util.Queue#poll poll()}</td>
87 < *    <td>{@link #pollFirst pollFirst()}</td>
86 > *    <td>{@link java.util.Queue#offer offer(e)}</td>
87 > *    <td>{@link #offerLast offerLast(e)}</td>
88   *  </tr>
89   *  <tr>
90   *    <td>{@link java.util.Queue#remove remove()}</td>
91   *    <td>{@link #removeFirst removeFirst()}</td>
92   *  </tr>
93   *  <tr>
94 < *    <td>{@link java.util.Queue#peek peek()}</td>
95 < *    <td>{@link #peek peekFirst()}</td>
94 > *    <td>{@link java.util.Queue#poll poll()}</td>
95 > *    <td>{@link #pollFirst pollFirst()}</td>
96   *  </tr>
97   *  <tr>
98   *    <td>{@link java.util.Queue#element element()}</td>
99   *    <td>{@link #getFirst getFirst()}</td>
100   *  </tr>
101 + *  <tr>
102 + *    <td>{@link java.util.Queue#peek peek()}</td>
103 + *    <td>{@link #peek peekFirst()}</td>
104 + *  </tr>
105   * </table>
106   *
107   * <p>Deques can also be used as LIFO (Last-In-First-Out) stacks.  This
108   * interface should be used in preference to the legacy {@link Stack} class.
109   * When a deque is used as a stack, elements are pushed and popped from the
110   * beginning of the deque.  Stack methods are precisely equivalent to
111 < * <tt>Deque</tt> methods as indicated in the table below:
111 > * {@code Deque} methods as indicated in the table below:
112   *
113 < * <p><table BORDER CELLPADDING=3 CELLSPACING=1>
113 > * <p>
114 > * <table BORDER CELLPADDING=3 CELLSPACING=1>
115 > * <caption>Comparison of Stack and Deque methods</caption>
116   *  <tr>
117   *    <td ALIGN=CENTER> <b>Stack Method</b></td>
118 < *    <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
118 > *    <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
119   *  </tr>
120   *  <tr>
121   *    <td>{@link #push push(e)}</td>
# Line 131 | Line 137 | package java.util;
137   *
138   * <p>This interface provides two methods to remove interior
139   * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and
140 < * {@link #removeLastOccurrence removeLastOccurrence}.  Unlike the
141 < * {@link List} interface, this interface does not provide support for
142 < * indexed access to elements.
140 > * {@link #removeLastOccurrence removeLastOccurrence}.
141 > *
142 > * <p>Unlike the {@link List} interface, this interface does not
143 > * provide support for indexed access to elements.
144   *
145 < * <p>While <tt>Deque</tt> implementations are not strictly required
145 > * <p>While {@code Deque} implementations are not strictly required
146   * to prohibit the insertion of null elements, they are strongly
147 < * encouraged to do so.  Users of any <tt>Deque</tt> implementations
147 > * encouraged to do so.  Users of any {@code Deque} implementations
148   * that do allow null elements are strongly encouraged <i>not</i> to
149   * take advantage of the ability to insert nulls.  This is so because
150 < * <tt>null</tt> is used as a special return value by various methods
150 > * {@code null} is used as a special return value by various methods
151   * to indicated that the deque is empty.
152   *
153 < * <p><tt>Deque</tt> implementations generally do not define
154 < * element-based versions of the <tt>equals</tt> and <tt>hashCode</tt>
153 > * <p>{@code Deque} implementations generally do not define
154 > * element-based versions of the {@code equals} and {@code hashCode}
155   * methods, but instead inherit the identity-based versions from class
156 < * <tt>Object</tt>.
156 > * {@code Object}.
157   *
158   * <p>This interface is a member of the <a
159 < * href="{@docRoot}/../guide/collections/index.html"> Java Collections
159 > * href="{@docRoot}/../technotes/guides/collections/index.html"> Java Collections
160   * Framework</a>.
161   *
162   * @author Doug Lea
# Line 157 | Line 164 | package java.util;
164   * @since  1.6
165   * @param <E> the type of elements held in this collection
166   */
160
167   public interface Deque<E> extends Queue<E> {
168      /**
169 +     * Inserts the specified element at the front of this deque if it is
170 +     * possible to do so immediately without violating capacity restrictions,
171 +     * throwing an {@code IllegalStateException} if no space is currently
172 +     * available.  When using a capacity-restricted deque, it is generally
173 +     * preferable to use method {@link #offerFirst}.
174 +     *
175 +     * @param e the element to add
176 +     * @throws IllegalStateException if the element cannot be added at this
177 +     *         time due to capacity restrictions
178 +     * @throws ClassCastException if the class of the specified element
179 +     *         prevents it from being added to this deque
180 +     * @throws NullPointerException if the specified element is null and this
181 +     *         deque does not permit null elements
182 +     * @throws IllegalArgumentException if some property of the specified
183 +     *         element prevents it from being added to this deque
184 +     */
185 +    void addFirst(E e);
186 +
187 +    /**
188 +     * Inserts the specified element at the end of this deque if it is
189 +     * possible to do so immediately without violating capacity restrictions,
190 +     * throwing an {@code IllegalStateException} if no space is currently
191 +     * available.  When using a capacity-restricted deque, it is generally
192 +     * preferable to use method {@link #offerLast}.
193 +     *
194 +     * <p>This method is equivalent to {@link #add}.
195 +     *
196 +     * @param e the element to add
197 +     * @throws IllegalStateException if the element cannot be added at this
198 +     *         time due to capacity restrictions
199 +     * @throws ClassCastException if the class of the specified element
200 +     *         prevents it from being added to this deque
201 +     * @throws NullPointerException if the specified element is null and this
202 +     *         deque does not permit null elements
203 +     * @throws IllegalArgumentException if some property of the specified
204 +     *         element prevents it from being added to this deque
205 +     */
206 +    void addLast(E e);
207 +
208 +    /**
209       * Inserts the specified element at the front of this deque unless it would
210       * violate capacity restrictions.  When using a capacity-restricted deque,
211 <     * this method is generally preferable to method <tt>addFirst</tt>, which
212 <     * can fail to insert an element only by throwing an exception.
211 >     * this method is generally preferable to the {@link #addFirst} method,
212 >     * which can fail to insert an element only by throwing an exception.
213       *
214 <     * @param e the element to insert
215 <     * @return <tt>true</tt> if it was possible to insert the element,
216 <     *     else <tt>false</tt>
214 >     * @param e the element to add
215 >     * @return {@code true} if the element was added to this deque, else
216 >     *         {@code false}
217 >     * @throws ClassCastException if the class of the specified element
218 >     *         prevents it from being added to this deque
219       * @throws NullPointerException if the specified element is null and this
220 <     *     deque does not permit null elements
220 >     *         deque does not permit null elements
221 >     * @throws IllegalArgumentException if some property of the specified
222 >     *         element prevents it from being added to this deque
223       */
224      boolean offerFirst(E e);
225  
226      /**
227       * Inserts the specified element at the end of this deque unless it would
228       * violate capacity restrictions.  When using a capacity-restricted deque,
229 <     * this method is generally preferable to method <tt>addLast</tt> which
230 <     * can fail to insert an element only by throwing an exception.
229 >     * this method is generally preferable to the {@link #addLast} method,
230 >     * which can fail to insert an element only by throwing an exception.
231       *
232 <     * @param e the element to insert
233 <     * @return <tt>true</tt> if it was possible to insert the element,
234 <     *     else <tt>false</tt>
232 >     * @param e the element to add
233 >     * @return {@code true} if the element was added to this deque, else
234 >     *         {@code false}
235 >     * @throws ClassCastException if the class of the specified element
236 >     *         prevents it from being added to this deque
237       * @throws NullPointerException if the specified element is null and this
238 <     *     deque does not permit null elements
238 >     *         deque does not permit null elements
239 >     * @throws IllegalArgumentException if some property of the specified
240 >     *         element prevents it from being added to this deque
241       */
242      boolean offerLast(E e);
243  
244      /**
245 <     * Inserts the specified element at the front of this deque unless it
246 <     * would violate capacity restrictions.
245 >     * Retrieves and removes the first element of this deque.  This method
246 >     * differs from {@link #pollFirst pollFirst} only in that it throws an
247 >     * exception if this deque is empty.
248       *
249 <     * @param e the element to insert
250 <     * @throws IllegalStateException if it was not possible to insert
196 <     *    the element due to capacity restrictions
197 <     * @throws NullPointerException if the specified element is null and this
198 <     *     deque does not permit null elements
249 >     * @return the head of this deque
250 >     * @throws NoSuchElementException if this deque is empty
251       */
252 <    void addFirst(E e);
252 >    E removeFirst();
253  
254      /**
255 <     * Inserts the specified element at the end of this deque unless it would
256 <     * violate capacity restrictions.
255 >     * Retrieves and removes the last element of this deque.  This method
256 >     * differs from {@link #pollLast pollLast} only in that it throws an
257 >     * exception if this deque is empty.
258       *
259 <     * @param e the element to insert
260 <     * @throws IllegalStateException if it was not possible to insert
208 <     *    the element due to capacity restrictions
209 <     * @throws NullPointerException if the specified element is null and this
210 <     *     deque does not permit null elements
259 >     * @return the tail of this deque
260 >     * @throws NoSuchElementException if this deque is empty
261       */
262 <    void addLast(E e);
262 >    E removeLast();
263  
264      /**
265 <     * Retrieves and removes the first element of this deque, or
266 <     * <tt>null</tt> if this deque is empty.
265 >     * Retrieves and removes the first element of this deque,
266 >     * or returns {@code null} if this deque is empty.
267       *
268 <     * @return the first element of this deque, or <tt>null</tt> if
219 <     *     this deque is empty
268 >     * @return the head of this deque, or {@code null} if this deque is empty
269       */
270      E pollFirst();
271  
272      /**
273 <     * Retrieves and removes the last element of this deque, or
274 <     * <tt>null</tt> if this deque is empty.
273 >     * Retrieves and removes the last element of this deque,
274 >     * or returns {@code null} if this deque is empty.
275       *
276 <     * @return the last element of this deque, or <tt>null</tt> if
228 <     *     this deque is empty
276 >     * @return the tail of this deque, or {@code null} if this deque is empty
277       */
278      E pollLast();
279  
280      /**
281 <     * Retrieves and removes the first element of this deque.  This method
282 <     * differs from the <tt>pollFirst</tt> method only in that it throws an
283 <     * exception if this deque is empty.
281 >     * Retrieves, but does not remove, the first element of this deque.
282 >     *
283 >     * This method differs from {@link #peekFirst peekFirst} only in that it
284 >     * throws an exception if this deque is empty.
285       *
286 <     * @return the first element of this deque
286 >     * @return the head of this deque
287       * @throws NoSuchElementException if this deque is empty
288       */
289 <    E removeFirst();
289 >    E getFirst();
290  
291      /**
292 <     * Retrieves and removes the last element of this deque.  This method
293 <     * differs from the <tt>pollLast</tt> method only in that it throws an
294 <     * exception if this deque is empty.
292 >     * Retrieves, but does not remove, the last element of this deque.
293 >     * This method differs from {@link #peekLast peekLast} only in that it
294 >     * throws an exception if this deque is empty.
295       *
296 <     * @return the last element of this deque
296 >     * @return the tail of this deque
297       * @throws NoSuchElementException if this deque is empty
298       */
299 <    E removeLast();
299 >    E getLast();
300  
301      /**
302       * Retrieves, but does not remove, the first element of this deque,
303 <     * returning <tt>null</tt> if this deque is empty.
303 >     * or returns {@code null} if this deque is empty.
304       *
305 <     * @return the first element of this deque, or <tt>null</tt> if
257 <     *     this deque is empty
305 >     * @return the head of this deque, or {@code null} if this deque is empty
306       */
307      E peekFirst();
308  
309      /**
310       * Retrieves, but does not remove, the last element of this deque,
311 <     * returning <tt>null</tt> if this deque is empty.
311 >     * or returns {@code null} if this deque is empty.
312       *
313 <     * @return the last element of this deque, or <tt>null</tt> if this deque
266 <     *     is empty
313 >     * @return the tail of this deque, or {@code null} if this deque is empty
314       */
315      E peekLast();
316  
317      /**
318 <     * Retrieves, but does not remove, the first element of this
319 <     * deque.  This method differs from the <tt>peekFirst</tt> method only
320 <     * in that it throws an exception if this deque is empty.
321 <     *
322 <     * @return the first element of this deque
323 <     * @throws NoSuchElementException if this deque is empty
324 <     */
278 <    E getFirst();
279 <
280 <    /**
281 <     * Retrieves, but does not remove, the last element of this
282 <     * deque.  This method differs from the <tt>peekLast</tt> method only
283 <     * in that it throws an exception if this deque is empty.
284 <     *
285 <     * @return the last element of this deque
286 <     * @throws NoSuchElementException if this deque is empty
287 <     */
288 <    E getLast();
289 <
290 <    /**
291 <     * Removes the first occurrence of the specified element in this
292 <     * deque.  If the deque does not contain the element, it is
293 <     * unchanged.  More formally, removes the first element <tt>e</tt>
294 <     * such that <tt>(o==null ? e==null : o.equals(e))</tt> (if
295 <     * such an element exists).
318 >     * Removes the first occurrence of the specified element from this deque.
319 >     * If the deque does not contain the element, it is unchanged.
320 >     * More formally, removes the first element {@code e} such that
321 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
322 >     * (if such an element exists).
323 >     * Returns {@code true} if this deque contained the specified element
324 >     * (or equivalently, if this deque changed as a result of the call).
325       *
326       * @param o element to be removed from this deque, if present
327 <     * @return <tt>true</tt> if the deque contained the specified element
328 <     * @throws NullPointerException if the specified element is null and this
329 <     *     deque does not permit null elements
327 >     * @return {@code true} if an element was removed as a result of this call
328 >     * @throws ClassCastException if the class of the specified element
329 >     *         is incompatible with this deque
330 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
331 >     * @throws NullPointerException if the specified element is null
332 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
333       */
334      boolean removeFirstOccurrence(Object o);
335  
336      /**
337 <     * Removes the last occurrence of the specified element in this
338 <     * deque.  If the deque does not contain the element, it is
339 <     * unchanged.  More formally, removes the last element <tt>e</tt>
340 <     * such that <tt>(o==null ? e==null : o.equals(e))</tt> (if
341 <     * such an element exists).
337 >     * Removes the last occurrence of the specified element from this deque.
338 >     * If the deque does not contain the element, it is unchanged.
339 >     * More formally, removes the last element {@code e} such that
340 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
341 >     * (if such an element exists).
342 >     * Returns {@code true} if this deque contained the specified element
343 >     * (or equivalently, if this deque changed as a result of the call).
344       *
345       * @param o element to be removed from this deque, if present
346 <     * @return <tt>true</tt> if the deque contained the specified element
347 <     * @throws NullPointerException if the specified element is null and this
348 <     *     deque does not permit null elements
346 >     * @return {@code true} if an element was removed as a result of this call
347 >     * @throws ClassCastException if the class of the specified element
348 >     *         is incompatible with this deque
349 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
350 >     * @throws NullPointerException if the specified element is null
351 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
352       */
353      boolean removeLastOccurrence(Object o);
354  
318
355      // *** Queue methods ***
356  
357      /**
358       * Inserts the specified element into the queue represented by this deque
359 <     * unless it would violate capacity restrictions.  In other words, inserts
360 <     * the specified element at the end of this deque.  When using a
361 <     * capacity-restricted deque, this method is generally preferable to the
362 <     * {@link #add} method, which can fail to insert an element only by
363 <     * throwing an exception.
364 <     *
329 <     * <p>This method is equivalent to {@link #offerLast}.
330 <     *
331 <     * @param e the element to insert
332 <     * @return <tt>true</tt> if it was possible to insert the element,
333 <     *     else <tt>false</tt>
334 <     * @throws NullPointerException if the specified element is null and this
335 <     *     deque does not permit null elements
336 <     */
337 <    boolean offer(E e);
338 <
339 <    /**
340 <     * Inserts the specified element into the queue represented by this
341 <     * deque unless it would violate capacity restrictions.  In other words,
342 <     * inserts the specified element as the last element of this deque.
359 >     * (in other words, at the tail of this deque) if it is possible to do so
360 >     * immediately without violating capacity restrictions, returning
361 >     * {@code true} upon success and throwing an
362 >     * {@code IllegalStateException} if no space is currently available.
363 >     * When using a capacity-restricted deque, it is generally preferable to
364 >     * use {@link #offer(Object) offer}.
365       *
366       * <p>This method is equivalent to {@link #addLast}.
367       *
368 <     * @param e the element to insert
369 <     * @return <tt>true</tt> (as per the spec for {@link Collection#add})
370 <     * @throws IllegalStateException if it was not possible to insert
371 <     *    the element due to capacity restrictions
368 >     * @param e the element to add
369 >     * @return {@code true} (as specified by {@link Collection#add})
370 >     * @throws IllegalStateException if the element cannot be added at this
371 >     *         time due to capacity restrictions
372 >     * @throws ClassCastException if the class of the specified element
373 >     *         prevents it from being added to this deque
374       * @throws NullPointerException if the specified element is null and this
375 <     *     deque does not permit null elements
375 >     *         deque does not permit null elements
376 >     * @throws IllegalArgumentException if some property of the specified
377 >     *         element prevents it from being added to this deque
378       */
379      boolean add(E e);
380  
381      /**
382 <     * Retrieves and removes the head of the queue represented by
383 <     * this deque, or <tt>null</tt> if this deque is empty.  In other words,
384 <     * retrieves and removes the first element of this deque, or <tt>null</tt>
385 <     * if this deque is empty.
382 >     * Inserts the specified element into the queue represented by this deque
383 >     * (in other words, at the tail of this deque) if it is possible to do so
384 >     * immediately without violating capacity restrictions, returning
385 >     * {@code true} upon success and {@code false} if no space is currently
386 >     * available.  When using a capacity-restricted deque, this method is
387 >     * generally preferable to the {@link #add} method, which can fail to
388 >     * insert an element only by throwing an exception.
389       *
390 <     * <p>This method is equivalent to {@link #pollFirst()}.
390 >     * <p>This method is equivalent to {@link #offerLast}.
391       *
392 <     * @return the first element of this deque, or <tt>null</tt> if
393 <     *     this deque is empty
392 >     * @param e the element to add
393 >     * @return {@code true} if the element was added to this deque, else
394 >     *         {@code false}
395 >     * @throws ClassCastException if the class of the specified element
396 >     *         prevents it from being added to this deque
397 >     * @throws NullPointerException if the specified element is null and this
398 >     *         deque does not permit null elements
399 >     * @throws IllegalArgumentException if some property of the specified
400 >     *         element prevents it from being added to this deque
401       */
402 <    E poll();
402 >    boolean offer(E e);
403  
404      /**
405 <     * Retrieves and removes the head of the queue represented by this deque.
406 <     * This method differs from the <tt>poll</tt> method only in that it
407 <     * throws an exception if this deque is empty.
405 >     * Retrieves and removes the head of the queue represented by this deque
406 >     * (in other words, the first element of this deque).
407 >     * This method differs from {@link #poll poll} only in that it throws an
408 >     * exception if this deque is empty.
409       *
410       * <p>This method is equivalent to {@link #removeFirst()}.
411       *
# Line 378 | Line 415 | public interface Deque<E> extends Queue<
415      E remove();
416  
417      /**
418 <     * Retrieves, but does not remove, the head of the queue represented by
419 <     * this deque, returning <tt>null</tt> if this deque is empty.
418 >     * Retrieves and removes the head of the queue represented by this deque
419 >     * (in other words, the first element of this deque), or returns
420 >     * {@code null} if this deque is empty.
421       *
422 <     * <p>This method is equivalent to {@link #peekFirst()}.
422 >     * <p>This method is equivalent to {@link #pollFirst()}.
423       *
424 <     * @return the head of the queue represented by this deque, or
425 <     *     <tt>null</tt> if this deque is empty
424 >     * @return the first element of this deque, or {@code null} if
425 >     *         this deque is empty
426       */
427 <    E peek();
427 >    E poll();
428  
429      /**
430       * Retrieves, but does not remove, the head of the queue represented by
431 <     * this deque.  This method differs from the <tt>peek</tt> method only in
432 <     * that it throws an exception if this deque is empty.
431 >     * this deque (in other words, the first element of this deque).
432 >     * This method differs from {@link #peek peek} only in that it throws an
433 >     * exception if this deque is empty.
434       *
435       * <p>This method is equivalent to {@link #getFirst()}.
436       *
# Line 400 | Line 439 | public interface Deque<E> extends Queue<
439       */
440      E element();
441  
442 +    /**
443 +     * Retrieves, but does not remove, the head of the queue represented by
444 +     * this deque (in other words, the first element of this deque), or
445 +     * returns {@code null} if this deque is empty.
446 +     *
447 +     * <p>This method is equivalent to {@link #peekFirst()}.
448 +     *
449 +     * @return the head of the queue represented by this deque, or
450 +     *         {@code null} if this deque is empty
451 +     */
452 +    E peek();
453 +
454  
455      // *** Stack methods ***
456  
457      /**
458 <     * Pushes an element onto the stack represented by this deque.  In other
459 <     * words, inserts the element at the front of this deque unless it would
460 <     * violate capacity restrictions.
458 >     * Pushes an element onto the stack represented by this deque (in other
459 >     * words, at the head of this deque) if it is possible to do so
460 >     * immediately without violating capacity restrictions, throwing an
461 >     * {@code IllegalStateException} if no space is currently available.
462       *
463       * <p>This method is equivalent to {@link #addFirst}.
464       *
465       * @param e the element to push
466 <     * @throws IllegalStateException if it was not possible to insert
467 <     *    the element due to capacity restrictions
466 >     * @throws IllegalStateException if the element cannot be added at this
467 >     *         time due to capacity restrictions
468 >     * @throws ClassCastException if the class of the specified element
469 >     *         prevents it from being added to this deque
470       * @throws NullPointerException if the specified element is null and this
471 <     *     deque does not permit null elements
471 >     *         deque does not permit null elements
472 >     * @throws IllegalArgumentException if some property of the specified
473 >     *         element prevents it from being added to this deque
474       */
475      void push(E e);
476  
# Line 425 | Line 481 | public interface Deque<E> extends Queue<
481       * <p>This method is equivalent to {@link #removeFirst()}.
482       *
483       * @return the element at the front of this deque (which is the top
484 <     *     of the stack represented by this deque)
484 >     *         of the stack represented by this deque)
485       * @throws NoSuchElementException if this deque is empty
486       */
487      E pop();
488  
489  
490 <    // *** Collection Method ***
490 >    // *** Collection methods ***
491  
492      /**
493 <     * Returns an iterator over the elements in this deque.  The elements
494 <     * will be ordered from first (head) to last (tail).
493 >     * Removes the first occurrence of the specified element from this deque.
494 >     * If the deque does not contain the element, it is unchanged.
495 >     * More formally, removes the first element {@code e} such that
496 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
497 >     * (if such an element exists).
498 >     * Returns {@code true} if this deque contained the specified element
499 >     * (or equivalently, if this deque changed as a result of the call).
500       *
501 <     * @return an <tt>Iterator</tt> over the elements in this deque
501 >     * <p>This method is equivalent to {@link #removeFirstOccurrence(Object)}.
502 >     *
503 >     * @param o element to be removed from this deque, if present
504 >     * @return {@code true} if an element was removed as a result of this call
505 >     * @throws ClassCastException if the class of the specified element
506 >     *         is incompatible with this deque
507 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
508 >     * @throws NullPointerException if the specified element is null
509 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
510 >     */
511 >    boolean remove(Object o);
512 >
513 >    /**
514 >     * Returns {@code true} if this deque contains the specified element.
515 >     * More formally, returns {@code true} if and only if this deque contains
516 >     * at least one element {@code e} such that
517 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
518 >     *
519 >     * @param o element whose presence in this deque is to be tested
520 >     * @return {@code true} if this deque contains the specified element
521 >     * @throws ClassCastException if the class of the specified element
522 >     *         is incompatible with this deque
523 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
524 >     * @throws NullPointerException if the specified element is null
525 >     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
526 >     */
527 >    boolean contains(Object o);
528 >
529 >    /**
530 >     * Returns the number of elements in this deque.
531 >     *
532 >     * @return the number of elements in this deque
533 >     */
534 >    public int size();
535 >
536 >    /**
537 >     * Returns an iterator over the elements in this deque in proper sequence.
538 >     * The elements will be returned in order from first (head) to last (tail).
539 >     *
540 >     * @return an iterator over the elements in this deque in proper sequence
541       */
542      Iterator<E> iterator();
543 +
544 +    /**
545 +     * Returns an iterator over the elements in this deque in reverse
546 +     * sequential order.  The elements will be returned in order from
547 +     * last (tail) to first (head).
548 +     *
549 +     * @return an iterator over the elements in this deque in reverse
550 +     * sequence
551 +     */
552 +    Iterator<E> descendingIterator();
553 +
554   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines