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.21 by jsr166, Sun Oct 21 06:40:20 2012 UTC vs.
Revision 1.33 by jsr166, Wed Sep 30 00:03:02 2015 UTC

# 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>
30   * <table BORDER CELLPADDING=3 CELLSPACING=1>
31 + * <caption>Summary of Deque methods</caption>
32   *  <tr>
33   *    <td></td>
34   *    <td ALIGN=CENTER COLSPAN = 2> <b>First Element (Head)</b></td>
# Line 43 | Line 43 | package java.util;
43   *  </tr>
44   *  <tr>
45   *    <td><b>Insert</b></td>
46 < *    <td>{@link #addFirst addFirst(e)}</td>
47 < *    <td>{@link #offerFirst offerFirst(e)}</td>
48 < *    <td>{@link #addLast addLast(e)}</td>
49 < *    <td>{@link #offerLast offerLast(e)}</td>
46 > *    <td>{@link Deque#addFirst addFirst(e)}</td>
47 > *    <td>{@link Deque#offerFirst offerFirst(e)}</td>
48 > *    <td>{@link Deque#addLast addLast(e)}</td>
49 > *    <td>{@link Deque#offerLast offerLast(e)}</td>
50   *  </tr>
51   *  <tr>
52   *    <td><b>Remove</b></td>
53 < *    <td>{@link #removeFirst removeFirst()}</td>
54 < *    <td>{@link #pollFirst pollFirst()}</td>
55 < *    <td>{@link #removeLast removeLast()}</td>
56 < *    <td>{@link #pollLast pollLast()}</td>
53 > *    <td>{@link Deque#removeFirst removeFirst()}</td>
54 > *    <td>{@link Deque#pollFirst pollFirst()}</td>
55 > *    <td>{@link Deque#removeLast removeLast()}</td>
56 > *    <td>{@link Deque#pollLast pollLast()}</td>
57   *  </tr>
58   *  <tr>
59   *    <td><b>Examine</b></td>
60 < *    <td>{@link #getFirst getFirst()}</td>
61 < *    <td>{@link #peekFirst peekFirst()}</td>
62 < *    <td>{@link #getLast getLast()}</td>
63 < *    <td>{@link #peekLast peekLast()}</td>
60 > *    <td>{@link Deque#getFirst getFirst()}</td>
61 > *    <td>{@link Deque#peekFirst peekFirst()}</td>
62 > *    <td>{@link Deque#getLast getLast()}</td>
63 > *    <td>{@link Deque#peekLast peekLast()}</td>
64   *  </tr>
65   * </table>
66   *
67   * <p>This interface extends the {@link Queue} interface.  When a deque is
68   * used as a queue, FIFO (First-In-First-Out) behavior results.  Elements are
69   * added at the end of the deque and removed from the beginning.  The methods
70 < * inherited from the <tt>Queue</tt> interface are precisely equivalent to
71 < * <tt>Deque</tt> methods as indicated in the following table:
70 > * inherited from the {@code Queue} interface are precisely equivalent to
71 > * {@code Deque} methods as indicated in the following table:
72   *
73 * <p>
73   * <table BORDER CELLPADDING=3 CELLSPACING=1>
74 + * <caption>Comparison of Queue and Deque methods</caption>
75   *  <tr>
76 < *    <td ALIGN=CENTER> <b><tt>Queue</tt> Method</b></td>
77 < *    <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
76 > *    <td ALIGN=CENTER> <b>{@code Queue} Method</b></td>
77 > *    <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
78   *  </tr>
79   *  <tr>
80   *    <td>{@link java.util.Queue#add add(e)}</td>
# Line 106 | Line 106 | package java.util;
106   * interface should be used in preference to the legacy {@link Stack} class.
107   * When a deque is used as a stack, elements are pushed and popped from the
108   * beginning of the deque.  Stack methods are precisely equivalent to
109 < * <tt>Deque</tt> methods as indicated in the table below:
109 > * {@code Deque} methods as indicated in the table below:
110   *
111 * <p>
111   * <table BORDER CELLPADDING=3 CELLSPACING=1>
112 + * <caption>Comparison of Stack and Deque methods</caption>
113   *  <tr>
114   *    <td ALIGN=CENTER> <b>Stack Method</b></td>
115 < *    <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
115 > *    <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
116   *  </tr>
117   *  <tr>
118   *    <td>{@link #push push(e)}</td>
# Line 139 | Line 139 | package java.util;
139   * <p>Unlike the {@link List} interface, this interface does not
140   * provide support for indexed access to elements.
141   *
142 < * <p>While <tt>Deque</tt> implementations are not strictly required
142 > * <p>While {@code Deque} implementations are not strictly required
143   * to prohibit the insertion of null elements, they are strongly
144 < * encouraged to do so.  Users of any <tt>Deque</tt> implementations
144 > * encouraged to do so.  Users of any {@code Deque} implementations
145   * that do allow null elements are strongly encouraged <i>not</i> to
146   * take advantage of the ability to insert nulls.  This is so because
147 < * <tt>null</tt> is used as a special return value by various methods
147 > * {@code null} is used as a special return value by various methods
148   * to indicated that the deque is empty.
149   *
150 < * <p><tt>Deque</tt> implementations generally do not define
151 < * element-based versions of the <tt>equals</tt> and <tt>hashCode</tt>
150 > * <p>{@code Deque} implementations generally do not define
151 > * element-based versions of the {@code equals} and {@code hashCode}
152   * methods, but instead inherit the identity-based versions from class
153 < * <tt>Object</tt>.
153 > * {@code Object}.
154   *
155   * <p>This interface is a member of the <a
156   * href="{@docRoot}/../technotes/guides/collections/index.html"> Java Collections
# Line 159 | Line 159 | package java.util;
159   * @author Doug Lea
160   * @author Josh Bloch
161   * @since  1.6
162 < * @param <E> the type of elements held in this collection
162 > * @param <E> the type of elements held in this deque
163   */
164   public interface Deque<E> extends Queue<E> {
165      /**
166       * Inserts the specified element at the front of this deque if it is
167 <     * possible to do so immediately without violating capacity restrictions.
168 <     * When using a capacity-restricted deque, it is generally preferable to
169 <     * use method {@link #offerFirst}.
167 >     * possible to do so immediately without violating capacity restrictions,
168 >     * throwing an {@code IllegalStateException} if no space is currently
169 >     * available.  When using a capacity-restricted deque, it is generally
170 >     * preferable to use method {@link #offerFirst}.
171       *
172       * @param e the element to add
173       * @throws IllegalStateException if the element cannot be added at this
# Line 182 | Line 183 | public interface Deque<E> extends Queue<
183  
184      /**
185       * Inserts the specified element at the end of this deque if it is
186 <     * possible to do so immediately without violating capacity restrictions.
187 <     * When using a capacity-restricted deque, it is generally preferable to
188 <     * use method {@link #offerLast}.
186 >     * possible to do so immediately without violating capacity restrictions,
187 >     * throwing an {@code IllegalStateException} if no space is currently
188 >     * available.  When using a capacity-restricted deque, it is generally
189 >     * preferable to use method {@link #offerLast}.
190       *
191       * <p>This method is equivalent to {@link #add}.
192       *
# Line 207 | Line 209 | public interface Deque<E> extends Queue<
209       * which can fail to insert an element only by throwing an exception.
210       *
211       * @param e the element to add
212 <     * @return <tt>true</tt> if the element was added to this deque, else
213 <     *         <tt>false</tt>
212 >     * @return {@code true} if the element was added to this deque, else
213 >     *         {@code false}
214       * @throws ClassCastException if the class of the specified element
215       *         prevents it from being added to this deque
216       * @throws NullPointerException if the specified element is null and this
# Line 225 | Line 227 | public interface Deque<E> extends Queue<
227       * which can fail to insert an element only by throwing an exception.
228       *
229       * @param e the element to add
230 <     * @return <tt>true</tt> if the element was added to this deque, else
231 <     *         <tt>false</tt>
230 >     * @return {@code true} if the element was added to this deque, else
231 >     *         {@code false}
232       * @throws ClassCastException if the class of the specified element
233       *         prevents it from being added to this deque
234       * @throws NullPointerException if the specified element is null and this
# Line 258 | Line 260 | public interface Deque<E> extends Queue<
260  
261      /**
262       * Retrieves and removes the first element of this deque,
263 <     * or returns <tt>null</tt> if this deque is empty.
263 >     * or returns {@code null} if this deque is empty.
264       *
265 <     * @return the head of this deque, or <tt>null</tt> if this deque is empty
265 >     * @return the head of this deque, or {@code null} if this deque is empty
266       */
267      E pollFirst();
268  
269      /**
270       * Retrieves and removes the last element of this deque,
271 <     * or returns <tt>null</tt> if this deque is empty.
271 >     * or returns {@code null} if this deque is empty.
272       *
273 <     * @return the tail of this deque, or <tt>null</tt> if this deque is empty
273 >     * @return the tail of this deque, or {@code null} if this deque is empty
274       */
275      E pollLast();
276  
# Line 295 | Line 297 | public interface Deque<E> extends Queue<
297  
298      /**
299       * Retrieves, but does not remove, the first element of this deque,
300 <     * or returns <tt>null</tt> if this deque is empty.
300 >     * or returns {@code null} if this deque is empty.
301       *
302 <     * @return the head of this deque, or <tt>null</tt> if this deque is empty
302 >     * @return the head of this deque, or {@code null} if this deque is empty
303       */
304      E peekFirst();
305  
306      /**
307       * Retrieves, but does not remove, the last element of this deque,
308 <     * or returns <tt>null</tt> if this deque is empty.
308 >     * or returns {@code null} if this deque is empty.
309       *
310 <     * @return the tail of this deque, or <tt>null</tt> if this deque is empty
310 >     * @return the tail of this deque, or {@code null} if this deque is empty
311       */
312      E peekLast();
313  
314      /**
315       * Removes the first occurrence of the specified element from this deque.
316       * If the deque does not contain the element, it is unchanged.
317 <     * More formally, removes the first element <tt>e</tt> such that
318 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
319 <     * (if such an element exists).
318 <     * Returns <tt>true</tt> if this deque contained the specified element
317 >     * More formally, removes the first element {@code e} such that
318 >     * {@code Objects.equals(o, e)} (if such an element exists).
319 >     * Returns {@code true} if this deque contained the specified element
320       * (or equivalently, if this deque changed as a result of the call).
321       *
322       * @param o element to be removed from this deque, if present
323 <     * @return <tt>true</tt> if an element was removed as a result of this call
323 >     * @return {@code true} if an element was removed as a result of this call
324       * @throws ClassCastException if the class of the specified element
325 <     *         is incompatible with this deque (optional)
325 >     *         is incompatible with this deque
326 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
327       * @throws NullPointerException if the specified element is null and this
328 <     *         deque does not permit null elements (optional)
328 >     *         deque does not permit null elements
329 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
330       */
331      boolean removeFirstOccurrence(Object o);
332  
333      /**
334       * Removes the last occurrence of the specified element from this deque.
335       * If the deque does not contain the element, it is unchanged.
336 <     * More formally, removes the last element <tt>e</tt> such that
337 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
338 <     * (if such an element exists).
336 <     * Returns <tt>true</tt> if this deque contained the specified element
336 >     * More formally, removes the last element {@code e} such that
337 >     * {@code Objects.equals(o, e)} (if such an element exists).
338 >     * Returns {@code true} if this deque contained the specified element
339       * (or equivalently, if this deque changed as a result of the call).
340       *
341       * @param o element to be removed from this deque, if present
342 <     * @return <tt>true</tt> if an element was removed as a result of this call
342 >     * @return {@code true} if an element was removed as a result of this call
343       * @throws ClassCastException if the class of the specified element
344 <     *         is incompatible with this deque (optional)
344 >     *         is incompatible with this deque
345 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
346       * @throws NullPointerException if the specified element is null and this
347 <     *         deque does not permit null elements (optional)
347 >     *         deque does not permit null elements
348 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
349       */
350      boolean removeLastOccurrence(Object o);
351  
# Line 351 | Line 355 | public interface Deque<E> extends Queue<
355       * Inserts the specified element into the queue represented by this deque
356       * (in other words, at the tail of this deque) if it is possible to do so
357       * immediately without violating capacity restrictions, returning
358 <     * <tt>true</tt> upon success and throwing an
359 <     * <tt>IllegalStateException</tt> if no space is currently available.
358 >     * {@code true} upon success and throwing an
359 >     * {@code IllegalStateException} if no space is currently available.
360       * When using a capacity-restricted deque, it is generally preferable to
361       * use {@link #offer(Object) offer}.
362       *
363       * <p>This method is equivalent to {@link #addLast}.
364       *
365       * @param e the element to add
366 <     * @return <tt>true</tt> (as specified by {@link Collection#add})
366 >     * @return {@code true} (as specified by {@link Collection#add})
367       * @throws IllegalStateException if the element cannot be added at this
368       *         time due to capacity restrictions
369       * @throws ClassCastException if the class of the specified element
# Line 375 | Line 379 | public interface Deque<E> extends Queue<
379       * Inserts the specified element into the queue represented by this deque
380       * (in other words, at the tail of this deque) if it is possible to do so
381       * immediately without violating capacity restrictions, returning
382 <     * <tt>true</tt> upon success and <tt>false</tt> if no space is currently
382 >     * {@code true} upon success and {@code false} if no space is currently
383       * available.  When using a capacity-restricted deque, this method is
384       * generally preferable to the {@link #add} method, which can fail to
385       * insert an element only by throwing an exception.
# Line 383 | Line 387 | public interface Deque<E> extends Queue<
387       * <p>This method is equivalent to {@link #offerLast}.
388       *
389       * @param e the element to add
390 <     * @return <tt>true</tt> if the element was added to this deque, else
391 <     *         <tt>false</tt>
390 >     * @return {@code true} if the element was added to this deque, else
391 >     *         {@code false}
392       * @throws ClassCastException if the class of the specified element
393       *         prevents it from being added to this deque
394       * @throws NullPointerException if the specified element is null and this
# Line 410 | Line 414 | public interface Deque<E> extends Queue<
414      /**
415       * Retrieves and removes the head of the queue represented by this deque
416       * (in other words, the first element of this deque), or returns
417 <     * <tt>null</tt> if this deque is empty.
417 >     * {@code null} if this deque is empty.
418       *
419       * <p>This method is equivalent to {@link #pollFirst()}.
420       *
421 <     * @return the first element of this deque, or <tt>null</tt> if
421 >     * @return the first element of this deque, or {@code null} if
422       *         this deque is empty
423       */
424      E poll();
# Line 435 | Line 439 | public interface Deque<E> extends Queue<
439      /**
440       * Retrieves, but does not remove, the head of the queue represented by
441       * this deque (in other words, the first element of this deque), or
442 <     * returns <tt>null</tt> if this deque is empty.
442 >     * returns {@code null} if this deque is empty.
443       *
444       * <p>This method is equivalent to {@link #peekFirst()}.
445       *
446       * @return the head of the queue represented by this deque, or
447 <     *         <tt>null</tt> if this deque is empty
447 >     *         {@code null} if this deque is empty
448       */
449      E peek();
450  
# Line 450 | Line 454 | public interface Deque<E> extends Queue<
454      /**
455       * Pushes an element onto the stack represented by this deque (in other
456       * words, at the head of this deque) if it is possible to do so
457 <     * immediately without violating capacity restrictions, returning
458 <     * <tt>true</tt> upon success and throwing an
455 <     * <tt>IllegalStateException</tt> if no space is currently available.
457 >     * immediately without violating capacity restrictions, throwing an
458 >     * {@code IllegalStateException} if no space is currently available.
459       *
460       * <p>This method is equivalent to {@link #addFirst}.
461       *
# Line 486 | Line 489 | public interface Deque<E> extends Queue<
489      /**
490       * Removes the first occurrence of the specified element from this deque.
491       * If the deque does not contain the element, it is unchanged.
492 <     * More formally, removes the first element <tt>e</tt> such that
493 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
494 <     * (if such an element exists).
492 <     * Returns <tt>true</tt> if this deque contained the specified element
492 >     * More formally, removes the first element {@code e} such that
493 >     * {@code Objects.equals(o, e)} (if such an element exists).
494 >     * Returns {@code true} if this deque contained the specified element
495       * (or equivalently, if this deque changed as a result of the call).
496       *
497 <     * <p>This method is equivalent to {@link #removeFirstOccurrence}.
497 >     * <p>This method is equivalent to {@link #removeFirstOccurrence(Object)}.
498       *
499       * @param o element to be removed from this deque, if present
500 <     * @return <tt>true</tt> if an element was removed as a result of this call
500 >     * @return {@code true} if an element was removed as a result of this call
501       * @throws ClassCastException if the class of the specified element
502 <     *         is incompatible with this deque (optional)
502 >     *         is incompatible with this deque
503 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
504       * @throws NullPointerException if the specified element is null and this
505 <     *         deque does not permit null elements (optional)
505 >     *         deque does not permit null elements
506 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
507       */
508      boolean remove(Object o);
509  
510      /**
511 <     * Returns <tt>true</tt> if this deque contains the specified element.
512 <     * More formally, returns <tt>true</tt> if and only if this deque contains
513 <     * at least one element <tt>e</tt> such that
510 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
511 >     * Returns {@code true} if this deque contains the specified element.
512 >     * More formally, returns {@code true} if and only if this deque contains
513 >     * at least one element {@code e} such that {@code Objects.equals(o, e)}.
514       *
515       * @param o element whose presence in this deque is to be tested
516 <     * @return <tt>true</tt> if this deque contains the specified element
517 <     * @throws ClassCastException if the type of the specified element
518 <     *         is incompatible with this deque (optional)
516 >     * @return {@code true} if this deque contains the specified element
517 >     * @throws ClassCastException if the class of the specified element
518 >     *         is incompatible with this deque
519 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
520       * @throws NullPointerException if the specified element is null and this
521 <     *         deque does not permit null elements (optional)
521 >     *         deque does not permit null elements
522 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
523       */
524      boolean contains(Object o);
525  
# Line 523 | Line 528 | public interface Deque<E> extends Queue<
528       *
529       * @return the number of elements in this deque
530       */
531 <    public int size();
531 >    int size();
532  
533      /**
534       * Returns an iterator over the elements in this deque in proper sequence.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines