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.2 by dl, Tue Mar 8 12:27:06 2005 UTC vs.
Revision 1.14 by jsr166, Sat Jun 18 01:56:01 2005 UTC

# Line 5 | Line 5
5   */
6  
7   package java.util;
8 + import java.util.*; // for javadoc
9  
10   /**
11   * A linear collection that supports element insertion and removal at
# Line 24 | Line 25 | package java.util;
25   * <tt>Deque</tt> implementations; in most implementations, insert
26   * operations cannot fail.
27   *
28 < * <p>The twelve methods described above are summarized in the
29 < * following table:<p>
30 < *
28 > * <p>The twelve methods described above are summarized in the
29 > * following table:
30 > *
31 > * <p>
32   * <table BORDER CELLPADDING=3 CELLSPACING=1>
33   *  <tr>
34   *    <td></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>
# Line 65 | Line 67 | package java.util;
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 to the end of the deque and removed from the beginning.  The methods
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:<p>
72 > * <tt>Deque</tt> methods as indicated in the following table:
73   *
74 + * <p>
75   * <table BORDER CELLPADDING=3 CELLSPACING=1>
76   *  <tr>
77   *    <td ALIGN=CENTER> <b><tt>Queue</tt> Method</b></td>
78   *    <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
79   *  </tr>
80   *  <tr>
78 *   <tr>
79 *    <td>{@link java.util.Queue#offer offer(e)}</td>
80 *    <td>{@link #offerLast offerLast(e)}</td>
81 *   </tr>
82 *   <tr>
81   *    <td>{@link java.util.Queue#add add(e)}</td>
82   *    <td>{@link #addLast addLast(e)}</td>
83 < *   </tr>
84 < *   <tr>
85 < *    <td>{@link java.util.Queue#poll poll()}</td>
86 < *    <td>{@link #pollFirst pollFirst()}</td>
87 < *   </tr>
88 < *   <tr>
83 > *  </tr>
84 > *  <tr>
85 > *    <td>{@link java.util.Queue#offer offer(e)}</td>
86 > *    <td>{@link #offerLast offerLast(e)}</td>
87 > *  </tr>
88 > *  <tr>
89   *    <td>{@link java.util.Queue#remove remove()}</td>
90   *    <td>{@link #removeFirst removeFirst()}</td>
91 < *   </tr>
92 < *   <tr>
93 < *    <td>{@link java.util.Queue#peek peek()}</td>
94 < *    <td>{@link #peek peekFirst()}</td>
95 < *   </tr>
96 < *   <tr>
91 > *  </tr>
92 > *  <tr>
93 > *    <td>{@link java.util.Queue#poll poll()}</td>
94 > *    <td>{@link #pollFirst pollFirst()}</td>
95 > *  </tr>
96 > *  <tr>
97   *    <td>{@link java.util.Queue#element element()}</td>
98   *    <td>{@link #getFirst getFirst()}</td>
99 < *   </tr>
99 > *  </tr>
100 > *  <tr>
101 > *    <td>{@link java.util.Queue#peek peek()}</td>
102 > *    <td>{@link #peek peekFirst()}</td>
103 > *  </tr>
104   * </table>
105   *
106   * <p>Deques can also be used as LIFO (Last-In-First-Out) stacks.  This
107   * interface should be used in preference to the legacy {@link Stack} class.
108 < * When a dequeue is used as a stack, elements are pushed and popped from the
108 > * When a deque is used as a stack, elements are pushed and popped from the
109   * beginning of the deque.  Stack methods are precisely equivalent to
110 < * <tt>Deque</tt> methods as indicated in the table below:<p>
110 > * <tt>Deque</tt> methods as indicated in the table below:
111   *
112 + * <p>
113   * <table BORDER CELLPADDING=3 CELLSPACING=1>
114   *  <tr>
115   *    <td ALIGN=CENTER> <b>Stack Method</b></td>
116   *    <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
117   *  </tr>
118   *  <tr>
116 *   <tr>
119   *    <td>{@link #push push(e)}</td>
120   *    <td>{@link #addFirst addFirst(e)}</td>
121 < *   </tr>
122 < *   <tr>
121 > *  </tr>
122 > *  <tr>
123   *    <td>{@link #pop pop()}</td>
124   *    <td>{@link #removeFirst removeFirst()}</td>
125 < *   </tr>
126 < *   <tr>
125 > *  </tr>
126 > *  <tr>
127   *    <td>{@link #peek peek()}</td>
128   *    <td>{@link #peekFirst peekFirst()}</td>
129 < *   </tr>
129 > *  </tr>
130   * </table>
131   *
132   * <p>Note that the {@link #peek peek} method works equally well when
# Line 133 | Line 135 | package java.util;
135   *
136   * <p>This interface provides two methods to remove interior
137   * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and
138 < * {@link #removeLastOccurrence removeLastOccurrence}.  Unlike the
139 < * {@link List} interface, this interface does not provide support for
140 < * indexed access to elements.
138 > * {@link #removeLastOccurrence removeLastOccurrence}.
139 > *
140 > * <p>Unlike the {@link List} interface, this interface does not
141 > * provide support for indexed access to elements.
142   *
143   * <p>While <tt>Deque</tt> implementations are not strictly required
144   * to prohibit the insertion of null elements, they are strongly
# Line 144 | Line 147 | package java.util;
147   * take advantage of the ability to insert nulls.  This is so because
148   * <tt>null</tt> is used as a special return value by various methods
149   * to indicated that the deque is empty.
150 < *
150 > *
151   * <p><tt>Deque</tt> implementations generally do not define
152   * element-based versions of the <tt>equals</tt> and <tt>hashCode</tt>
153   * methods, but instead inherit the identity-based versions from class
# Line 162 | Line 165 | package java.util;
165  
166   public interface Deque<E> extends Queue<E> {
167      /**
168 <     * Inserts the specified element to the front this deque unless it would
168 >     * Inserts the specified element at the front of this deque if it is
169 >     * possible to do so immediately without violating capacity restrictions.
170 >     * When using a capacity-restricted deque, it is generally preferable to
171 >     * use method {@link #offerFirst}.
172 >     *
173 >     * @param e the element to add
174 >     * @throws IllegalStateException if the element cannot be added at this
175 >     *         time due to capacity restrictions
176 >     * @throws ClassCastException if the class of the specified element
177 >     *         prevents it from being added to this deque
178 >     * @throws NullPointerException if the specified element is null and this
179 >     *         deque does not permit null elements
180 >     * @throws IllegalArgumentException if some property of the specified
181 >     *         element prevents it from being added to this deque
182 >     */
183 >    void addFirst(E e);
184 >
185 >    /**
186 >     * Inserts the specified element at the end of this deque if it is
187 >     * possible to do so immediately without violating capacity restrictions.
188 >     * When using a capacity-restricted deque, it is generally preferable to
189 >     * use method {@link #offerLast}.
190 >     *
191 >     * <p>This method is equivalent to {@link #add}.
192 >     *
193 >     * @param e the element to add
194 >     * @throws IllegalStateException if the element cannot be added at this
195 >     *         time due to capacity restrictions
196 >     * @throws ClassCastException if the class of the specified element
197 >     *         prevents it from being added to this deque
198 >     * @throws NullPointerException if the specified element is null and this
199 >     *         deque does not permit null elements
200 >     * @throws IllegalArgumentException if some property of the specified
201 >     *         element prevents it from being added to this deque
202 >     */
203 >    void addLast(E e);
204 >
205 >    /**
206 >     * Inserts the specified element at the front of this deque unless it would
207       * violate capacity restrictions.  When using a capacity-restricted deque,
208 <     * this method is generally preferable to method <tt>addFirst</tt>, which
209 <     * can fail to insert an element only by throwing an exception.
208 >     * this method is generally preferable to the {@link #addFirst} method,
209 >     * which can fail to insert an element only by throwing an exception.
210       *
211 <     * @param e the element to insert
212 <     * @return <tt>true</tt> if it was possible to insert the element,
213 <     *     else <tt>false</tt>
214 <     * @throws NullPointerException if <tt>e</tt> is null and this
215 <     *     deque does not permit null elements
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>
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
217 >     *         deque does not permit null elements
218 >     * @throws IllegalArgumentException if some property of the specified
219 >     *         element prevents it from being added to this deque
220       */
221      boolean offerFirst(E e);
222  
223      /**
224 <     * Inserts the specified element to the end of this deque unless it would
224 >     * Inserts the specified element at the end of this deque unless it would
225       * violate capacity restrictions.  When using a capacity-restricted deque,
226 <     * this method is generally preferable to method <tt>addLast</tt> which
227 <     * can fail to insert an element only by throwing an exception.
226 >     * this method is generally preferable to the {@link #addLast} method,
227 >     * which can fail to insert an element only by throwing an exception.
228       *
229 <     * @param e the element to insert
230 <     * @return <tt>true</tt> if it was possible to insert the element,
231 <     *     else <tt>false</tt>
232 <     * @throws NullPointerException if <tt>e</tt> is null and this
233 <     *     deque does not permit null elements
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>
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
235 >     *         deque does not permit null elements
236 >     * @throws IllegalArgumentException if some property of the specified
237 >     *         element prevents it from being added to this deque
238       */
239      boolean offerLast(E e);
240  
241      /**
242 <     * Inserts the specified element to the front of this deque unless it
243 <     * would violate capacity restrictions.
242 >     * Retrieves and removes the first element of this deque.  This method
243 >     * differs from {@link #pollFirst} only in that it throws an exception
244 >     * if this deque is empty.
245       *
246 <     * @param e the element to insert
247 <     * @throws IllegalStateException if it was not possible to insert
198 <     *    the element due to capacity restrictions
199 <     * @throws NullPointerException if <tt>e</tt> is null and this
200 <     *     deque does not permit null elements
246 >     * @return the head of this deque
247 >     * @throws NoSuchElementException if this deque is empty
248       */
249 <    void addFirst(E e);
249 >    E removeFirst();
250  
251      /**
252 <     * Inserts the specified element to the end of this deque unless it would
253 <     * violate capacity restrictions.
252 >     * Retrieves and removes the last element of this deque.  This method
253 >     * differs from {@link #pollLast} only in that it throws an exception if
254 >     * this deque is empty.
255       *
256 <     * @param e the element to insert
257 <     * @throws IllegalStateException if it was not possible to insert
210 <     *    the element due to capacity restrictions
211 <     * @throws NullPointerException if <tt>e</tt> is null and this
212 <     *     deque does not permit null elements
256 >     * @return the tail of this deque
257 >     * @throws NoSuchElementException if this deque is empty
258       */
259 <    void addLast(E e);
259 >    E removeLast();
260  
261      /**
262 <     * Retrieves and removes the first element of this deque, or
263 <     * <tt>null</tt> if this deque is empty.
262 >     * Retrieves and removes the first element of this deque,
263 >     * or returns <tt>null</tt> if this deque is empty.
264       *
265 <     * @return the first element of this deque, or <tt>null</tt> if
221 <     *     this deque is empty
265 >     * @return the head of this deque, or <tt>null</tt> if this deque is empty
266       */
267      E pollFirst();
268  
269      /**
270 <     * Retrieves and removes the last element of this deque, or
271 <     * <tt>null</tt> if this deque is empty.
270 >     * Retrieves and removes the last element of this deque,
271 >     * or returns <tt>null</tt> if this deque is empty.
272       *
273 <     * @return the last element of this deque, or <tt>null</tt> if
230 <     *     this deque is empty
273 >     * @return the tail of this deque, or <tt>null</tt> if this deque is empty
274       */
275      E pollLast();
276  
277      /**
278 <     * Removes and returns the first element of this deque.  This method
279 <     * differs from the <tt>pollFirst</tt> method only in that it throws an
278 >     * Retrieves, but does not remove, the first element of this deque.
279 >     * This method differs from {@link #peekFirst} only in that it throws an
280       * exception if this deque is empty.
281       *
282 <     * @return the first element of this deque
282 >     * @return the head of this deque
283       * @throws NoSuchElementException if this deque is empty
284       */
285 <    E removeFirst();
285 >    E getFirst();
286  
287      /**
288 <     * Retrieves and removes the last element of this deque.  This method
289 <     * differs from the <tt>pollLast</tt> method only in that it throws an
288 >     * Retrieves, but does not remove, the last element of this deque.
289 >     * This method differs from {@link #peekLast} only in that it throws an
290       * exception if this deque is empty.
291       *
292 <     * @return the last element of this deque
292 >     * @return the tail of this deque
293       * @throws NoSuchElementException if this deque is empty
294       */
295 <    E removeLast();
295 >    E getLast();
296  
297      /**
298       * Retrieves, but does not remove, the first element of this deque,
299 <     * returning <tt>null</tt> if this deque is empty.
299 >     * or returns <tt>null</tt> if this deque is empty.
300       *
301 <     * @return the first element of this deque, or <tt>null</tt> if
259 <     *     this deque is empty
301 >     * @return the head of this deque, or <tt>null</tt> if this deque is empty
302       */
303      E peekFirst();
304  
305      /**
306       * Retrieves, but does not remove, the last element of this deque,
307 <     * returning <tt>null</tt> if this deque is empty.
307 >     * or returns <tt>null</tt> if this deque is empty.
308       *
309 <     * @return the last element of this deque, or <tt>null</tt> if this deque
268 <     *     is empty
309 >     * @return the tail of this deque, or <tt>null</tt> if this deque is empty
310       */
311      E peekLast();
312  
313      /**
314 <     * Retrieves, but does not remove, the first element of this
315 <     * deque.  This method differs from the <tt>peek</tt> method only
316 <     * in that it throws an exception if this deque is empty.
317 <     *
318 <     * @return the first element of this deque
319 <     * @throws NoSuchElementException if this deque is empty
314 >     * Removes the first occurrence of the specified element from this deque.
315 >     * If the deque does not contain the element, it is unchanged.
316 >     * More formally, removes the first element <tt>e</tt> such that
317 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
318 >     * (if such an element exists).
319 >     * Returns <tt>true</tt> 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
324 >     * @throws ClassCastException if the class of the specified element
325 >     *         is incompatible with this deque (optional)
326 >     * @throws NullPointerException if the specified element is null and this
327 >     *         deque does not permit null elements (optional)
328 >     */
329 >    boolean removeFirstOccurrence(Object o);
330 >
331 >    /**
332 >     * Removes the last occurrence of the specified element from this deque.
333 >     * If the deque does not contain the element, it is unchanged.
334 >     * More formally, removes the last element <tt>e</tt> such that
335 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
336 >     * (if such an element exists).
337 >     * Returns <tt>true</tt> if this deque contained the specified element
338 >     * (or equivalently, if this deque changed as a result of the call).
339 >     *
340 >     * @param o element to be removed from this deque, if present
341 >     * @return <tt>true</tt> if an element was removed as a result of this call
342 >     * @throws ClassCastException if the class of the specified element
343 >     *         is incompatible with this deque (optional)
344 >     * @throws NullPointerException if the specified element is null and this
345 >     *         deque does not permit null elements (optional)
346       */
347 <    E getFirst();
347 >    boolean removeLastOccurrence(Object o);
348  
349 <    /**
283 <     * Retrieves, but does not remove, the last element of this
284 <     * deque.  This method differs from the <tt>peek</tt> method only
285 <     * in that it throws an exception if this deque is empty.
286 <     *
287 <     * @return the last element of this deque
288 <     * @throws NoSuchElementException if this deque is empty
289 <     */
290 <    E getLast();
349 >    // *** Queue methods ***
350  
351      /**
352 <     * Removes the first occurrence of the specified element in this
353 <     * deque.  If the deque does not contain the element, it is
354 <     * unchanged.  More formally, removes the first element <tt>e</tt>
355 <     * such that <tt>(o==null ? e==null : o.equals(e))</tt> (if
356 <     * such an element exists).
357 <     *
358 <     * @param e element to be removed from this deque, if present
359 <     * @return <tt>true</tt> if the deque contained the specified element
360 <     * @throws NullPointerException if the specified element is <tt>null</tt>
361 <     */
362 <    boolean removeFirstOccurrence(Object e);
363 <
364 <    /**
365 <     * Removes the last occurrence of the specified element in this
366 <     * deque.  If the deque does not contain the element, it is
367 <     * unchanged.  More formally, removes the last element <tt>e</tt>
368 <     * such that <tt>(o==null ? e==null : o.equals(e))</tt> (if
369 <     * such an element exists).
370 <     *
371 <     * @param e element to be removed from this deque, if present
313 <     * @return <tt>true</tt> if the deque contained the specified element
314 <     * @throws NullPointerException if the specified element is <tt>null</tt>
352 >     * Inserts the specified element into the queue represented by this deque
353 >     * (in other words, at the tail of this deque) if it is possible to do so
354 >     * immediately without violating capacity restrictions, returning
355 >     * <tt>true</tt> upon success and throwing an
356 >     * <tt>IllegalStateException</tt> if no space is currently available.
357 >     * When using a capacity-restricted deque, it is generally preferable to
358 >     * use {@link #offer(Object) offer}.
359 >     *
360 >     * <p>This method is equivalent to {@link #addLast}.
361 >     *
362 >     * @param e the element to add
363 >     * @return <tt>true</tt> (as per the spec for {@link Collection#add})
364 >     * @throws IllegalStateException if the element cannot be added at this
365 >     *         time due to capacity restrictions
366 >     * @throws ClassCastException if the class of the specified element
367 >     *         prevents it from being added to this deque
368 >     * @throws NullPointerException if the specified element is null and this
369 >     *         deque does not permit null elements
370 >     * @throws IllegalArgumentException if some property of the specified
371 >     *         element prevents it from being added to this deque
372       */
373 <    boolean removeLastOccurrence(Object e);
317 <
318 <
319 <    // *** Queue methods ***
373 >    boolean add(E e);
374  
375      /**
376       * Inserts the specified element into the queue represented by this deque
377 <     * unless it would violate capacity restrictions.  In other words, inserts
378 <     * the specified element to the end of this deque.  When using a
379 <     * capacity-restricted deque, this method is generally preferable to the
380 <     * {@link #add} method, which can fail to insert an element only by
381 <     * throwing an exception.
377 >     * (in other words, at the tail of this deque) if it is possible to do so
378 >     * immediately without violating capacity restrictions, returning
379 >     * <tt>true</tt> upon success and <tt>false</tt> if no space is currently
380 >     * available.  When using a capacity-restricted deque, this method is
381 >     * generally preferable to the {@link #add} method, which can fail to
382 >     * insert an element only by throwing an exception.
383       *
384       * <p>This method is equivalent to {@link #offerLast}.
385       *
386 <     * @param e the element to insert
387 <     * @return <tt>true</tt> if it was possible to insert the element,
388 <     *     else <tt>false</tt>
389 <     * @throws NullPointerException if <tt>e</tt> is null and this
390 <     *     deque does not permit null elements
386 >     * @param e the element to add
387 >     * @return <tt>true</tt> if the element was added to this deque, else
388 >     *         <tt>false</tt>
389 >     * @throws ClassCastException if the class of the specified element
390 >     *         prevents it from being added to this deque
391 >     * @throws NullPointerException if the specified element is null and this
392 >     *         deque does not permit null elements
393 >     * @throws IllegalArgumentException if some property of the specified
394 >     *         element prevents it from being added to this deque
395       */
396      boolean offer(E e);
397  
398      /**
399 <     * Inserts the specified element into the queue represented by this
400 <     * deque unless it would violate capacity restrictions.  In other words,
401 <     * inserts the specified element as the last element of this deque.
399 >     * Retrieves and removes the head of the queue represented by this deque
400 >     * (in other words, the first element of this deque).
401 >     * This method differs from {@link #poll} only in that it throws an
402 >     * exception if this deque is empty.
403       *
404 <     * <p>This method is equivalent to {@link #addLast}.
404 >     * <p>This method is equivalent to {@link #removeFirst()}.
405       *
406 <     * @param e the element to insert
407 <     * @return <tt>true</tt> (as per the spec for {@link Collection#add})
348 <     * @throws IllegalStateException if it was not possible to insert
349 <     *    the element due to capacity restrictions
350 <     * @throws NullPointerException if <tt>e</tt> is null and this
351 <     *     deque does not permit null elements
406 >     * @return the head of the queue represented by this deque
407 >     * @throws NoSuchElementException if this deque is empty
408       */
409 <    boolean add(E e);
409 >    E remove();
410  
411      /**
412 <     * Retrieves and removes the head of the queue represented by
413 <     * this deque, or <tt>null</tt> if this deque is empty.  In other words,
414 <     * retrieves and removes the first element of this deque, or <tt>null</tt>
359 <     * if this deque is empty.
412 >     * Retrieves and removes the head of the queue represented by this deque
413 >     * (in other words, the first element of this deque), or returns
414 >     * <tt>null</tt> if this deque is empty.
415       *
416       * <p>This method is equivalent to {@link #pollFirst()}.
417       *
418       * @return the first element of this deque, or <tt>null</tt> if
419 <     *     this deque is empty
419 >     *         this deque is empty
420       */
421      E poll();
422  
423      /**
424 <     * Retrieves and removes the head of the queue represented by this deque.
425 <     * This method differs from the <tt>poll</tt> method only in that it
426 <     * throws an exception if this deque is empty.
424 >     * Retrieves, but does not remove, the head of the queue represented by
425 >     * this deque (in other words, the first element of this deque).
426 >     * This method differs from {@link #peek} only in that it throws an
427 >     * exception if this deque is empty.
428       *
429 <     * <p>This method is equivalent to {@link #removeFirst()}.
429 >     * <p>This method is equivalent to {@link #getFirst()}.
430       *
431       * @return the head of the queue represented by this deque
432       * @throws NoSuchElementException if this deque is empty
433       */
434 <    E remove();
434 >    E element();
435  
436      /**
437       * Retrieves, but does not remove, the head of the queue represented by
438 <     * this deque, returning <tt>null</tt> if this deque is empty.
438 >     * this deque (in other words, the first element of this deque), or
439 >     * returns <tt>null</tt> if this deque is empty.
440       *
441 <     * <p>This method is equivalent to {@link #peekFirst()}
441 >     * <p>This method is equivalent to {@link #peekFirst()}.
442       *
443       * @return the head of the queue represented by this deque, or
444 <     *     <tt>null</tt> if this deque is empty
444 >     *         <tt>null</tt> if this deque is empty
445       */
446      E peek();
447  
391    /**
392     * Retrieves, but does not remove, the head of the queue represented by
393     * this deque.  This method differs from the <tt>peek</tt> method only in
394     * that it throws an exception if this deque is empty.
395     *
396     * <p>This method is equivalent to {@link #getFirst()}
397     *
398     * @return the head of the queue represented by this deque
399     * @throws NoSuchElementException if this deque is empty
400     */
401    E element();
402
448  
449      // *** Stack methods ***
450  
451      /**
452 <     * Pushes an element onto the stack represented by this deque.  In other
453 <     * words, inserts the element to the front this deque unless it would
454 <     * violate capacity restrictions.
452 >     * Pushes an element onto the stack represented by this deque (in other
453 >     * words, at the head of this deque) if it is possible to do so
454 >     * immediately without violating capacity restrictions, returning
455 >     * <tt>true</tt> upon success and throwing an
456 >     * <tt>IllegalStateException</tt> if no space is currently available.
457       *
458       * <p>This method is equivalent to {@link #addFirst}.
459       *
460 <     * @throws IllegalStateException if it was not possible to insert
461 <     *    the element due to capacity restrictions
462 <     * @throws NullPointerException if <tt>e</tt> is null and this
463 <     *     deque does not permit null elements
460 >     * @param e the element to push
461 >     * @throws IllegalStateException if the element cannot be added at this
462 >     *         time due to capacity restrictions
463 >     * @throws ClassCastException if the class of the specified element
464 >     *         prevents it from being added to this deque
465 >     * @throws NullPointerException if the specified element is null and this
466 >     *         deque does not permit null elements
467 >     * @throws IllegalArgumentException if some property of the specified
468 >     *         element prevents it from being added to this deque
469       */
470      void push(E e);
471  
# Line 424 | Line 476 | public interface Deque<E> extends Queue<
476       * <p>This method is equivalent to {@link #removeFirst()}.
477       *
478       * @return the element at the front of this deque (which is the top
479 <     *     of the stack represented by this deque)
479 >     *         of the stack represented by this deque)
480       * @throws NoSuchElementException if this deque is empty
481       */
482      E pop();
483  
484  
485 <    // *** Collection Method ***
485 >    // *** Collection methods ***
486  
487      /**
488 <     * Returns an iterator over the elements in this deque.  The elements
489 <     * will be ordered from first (head) to last (tail).
490 <     *
491 <     * @return an <tt>Iterator</tt> over the elements in this deque
488 >     * Removes the first occurrence of the specified element from this deque.
489 >     * If the deque does not contain the element, it is unchanged.
490 >     * More formally, removes the first element <tt>e</tt> such that
491 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
492 >     * (if such an element exists).
493 >     * Returns <tt>true</tt> if this deque contained the specified element
494 >     * (or equivalently, if this deque changed as a result of the call).
495 >     *
496 >     * <p>This method is equivalent to {@link #removeFirstOccurrence}.
497 >     *
498 >     * @param o element to be removed from this deque, if present
499 >     * @return <tt>true</tt> if an element was removed as a result of this call
500 >     * @throws ClassCastException if the class of the specified element
501 >     *         is incompatible with this deque (optional)
502 >     * @throws NullPointerException if the specified element is null and this
503 >     *         deque does not permit null elements (optional)
504 >     */
505 >    boolean remove(Object o);
506 >
507 >    /**
508 >     * Returns <tt>true</tt> if this deque contains the specified element.
509 >     * More formally, returns <tt>true</tt> if and only if this deque contains
510 >     * at least one element <tt>e</tt> such that
511 >     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
512 >     *
513 >     * @param o element whose presence in this deque is to be tested
514 >     * @return <tt>true</tt> if this deque contains the specified element
515 >     * @throws ClassCastException if the type of the specified element
516 >     *         is incompatible with this deque (optional)
517 >     * @throws NullPointerException if the specified element is null and this
518 >     *         deque does not permit null elements (optional)
519 >     */
520 >    boolean contains(Object o);
521 >
522 >    /**
523 >     * Returns the number of elements in this deque.
524 >     *
525 >     * @return the number of elements in this deque
526 >     */
527 >    public int size();
528 >
529 >    /**
530 >     * Returns an iterator over the elements in this deque in proper sequence.
531 >     * The elements will be returned in order from first (head) to last (tail).
532 >     *
533 >     * @return an iterator over the elements in this deque in proper sequence
534       */
535      Iterator<E> iterator();
536   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines