クラス SROQueue<T>
java.lang.Object
org.wcardinal.controller.data.SROQueue<T>
- 型パラメータ:
T
- data type
- すべての実装されたインタフェース:
Iterable<T>
,Collection<T>
,Queue<T>
,SLockable
,SVariable
,Unlockable
- 直系の既知のサブクラス:
SQueue
Represents a read-only queue and is more efficient for data streams
compared to the
SList
.
The default capacity is Integer.MAX_VALUE
.
The following are not supported for efficiency reasons:
* Collection.remove(Object)
,
* Collection.removeAll(java.util.Collection)
,
* Collection.retainAll(java.util.Collection)
.-
コンストラクタの概要
コンストラクタ -
メソッドの概要
修飾子とタイプメソッド説明int
capacity()
int
capacity
(int capacity) abstract boolean
clearAndAdd
(T element) Clear this queue and then appends the specified element to this queue.abstract boolean
clearAndAddAll
(Collection<? extends T> elements) Clear this queue and then appends the specified elements to this queue.abstract boolean
clearAndOffer
(T element) Clear this queue and then appends the specified element to this queue without raising an exception.abstract boolean
clearAndOfferAll
(Collection<? extends T> elements) Clear this queue and then appends the specified elements to this queue.abstract boolean
equals
(Collection<? extends T> other) Returns true if the specified target is equal to this.abstract int
Returns the capacity.abstract int
setCapacity
(int capacity) Sets to the specified capacity.クラスから継承されたメソッド java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
インタフェースから継承されたメソッド java.util.Collection
addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray, toArray
インタフェースから継承されたメソッド org.wcardinal.controller.data.SLockable
isLocked, lock, tryLock, tryLock, unlock, unlock
インタフェースから継承されたメソッド org.wcardinal.controller.data.SVariable
initialize, isInitialized, isNonNull, isReadOnly
-
コンストラクタの詳細
-
SROQueue
public SROQueue()
-
-
メソッドの詳細
-
capacity
-
capacity
-
setCapacity
Sets to the specified capacity. Older elements are removed to fit to the specified capacity if the number of elements this queue has is larger than the specified capacity.- パラメータ:
capacity
- the new capacity- 戻り値:
- the previous capacity
- 例外:
IllegalArgumentException
- if the specified capacity is negative
-
getCapacity
Returns the capacity.- 戻り値:
- the capacity
-
clearAndAdd
Clear this queue and then appends the specified element to this queue.- パラメータ:
element
- element to be appended to this queue- 戻り値:
- true
- 例外:
NullPointerException
- if this queue does not permit null, and the specified element is null
-
clearAndOffer
Clear this queue and then appends the specified element to this queue without raising an exception.- パラメータ:
element
- element to be appended to this queue- 戻り値:
- true if the specified element is successfully appended
- 例外:
NullPointerException
- if this queue does not permit null, and the specified element is null
-
clearAndAddAll
Clear this queue and then appends the specified elements to this queue.- パラメータ:
elements
- elements to be appended to this queue- 戻り値:
- true if this queue is changed as a result of the call
- 例外:
NullPointerException
- if the specified collection is null, or if this queue does not permit null, and the specified collection contains null
-
clearAndOfferAll
Clear this queue and then appends the specified elements to this queue.- パラメータ:
elements
- elements to be appended to this queue- 戻り値:
- true if this queue is changed as a result of the call
- 例外:
NullPointerException
- if the specified collection is null, or if this queue does not permit null, and the specified collection contains null
-
equals
Returns true if the specified target is equal to this.- パラメータ:
other
- the target to be compared- 戻り値:
- true if the specified target is equal to this
-