mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8300133: Use generalized see and link tags in core libs
Reviewed-by: jjg, mchung, naoto, smarks
This commit is contained in:
parent
2a46e07f7d
commit
7bf0d1465e
10 changed files with 88 additions and 107 deletions
|
@ -363,10 +363,10 @@ public interface Deque<E> extends Queue<E> {
|
|||
* @return {@code true} if an element was removed as a result of this call
|
||||
* @throws ClassCastException if the class of the specified element
|
||||
* is incompatible with this deque
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
* @throws NullPointerException if the specified element is null and this
|
||||
* deque does not permit null elements
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
*/
|
||||
boolean removeFirstOccurrence(Object o);
|
||||
|
||||
|
@ -382,10 +382,10 @@ public interface Deque<E> extends Queue<E> {
|
|||
* @return {@code true} if an element was removed as a result of this call
|
||||
* @throws ClassCastException if the class of the specified element
|
||||
* is incompatible with this deque
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
* @throws NullPointerException if the specified element is null and this
|
||||
* deque does not permit null elements
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
*/
|
||||
boolean removeLastOccurrence(Object o);
|
||||
|
||||
|
@ -565,10 +565,10 @@ public interface Deque<E> extends Queue<E> {
|
|||
* @return {@code true} if an element was removed as a result of this call
|
||||
* @throws ClassCastException if the class of the specified element
|
||||
* is incompatible with this deque
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
* @throws NullPointerException if the specified element is null and this
|
||||
* deque does not permit null elements
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
*/
|
||||
boolean remove(Object o);
|
||||
|
||||
|
@ -581,10 +581,10 @@ public interface Deque<E> extends Queue<E> {
|
|||
* @return {@code true} if this deque contains the specified element
|
||||
* @throws ClassCastException if the class of the specified element
|
||||
* is incompatible with this deque
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
* @throws NullPointerException if the specified element is null and this
|
||||
* deque does not permit null elements
|
||||
* (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
|
||||
* ({@linkplain Collection##optional-restrictions optional})
|
||||
*/
|
||||
boolean contains(Object o);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue