Collections.CheckedQueue(IQueue, Class) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a dynamically typesafe view of the specified queue.
[Android.Runtime.Register("checkedQueue", "(Ljava/util/Queue;Ljava/lang/Class;)Ljava/util/Queue;", "", ApiSince=26)]
[Java.Interop.JavaTypeParameters(new System.String[] { "E" })]
public static Java.Util.IQueue CheckedQueue (Java.Util.IQueue queue, Java.Lang.Class type);
[<Android.Runtime.Register("checkedQueue", "(Ljava/util/Queue;Ljava/lang/Class;)Ljava/util/Queue;", "", ApiSince=26)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "E" })>]
static member CheckedQueue : Java.Util.IQueue * Java.Lang.Class -> Java.Util.IQueue
Parameters
- queue
- IQueue
the queue for which a dynamically typesafe view is to be returned
- type
- Class
the type of element that queue
is permitted to hold
Returns
a dynamically typesafe view of the specified queue
- Attributes
Remarks
Returns a dynamically typesafe view of the specified queue. Any attempt to insert an element of the wrong type will result in an immediate ClassCastException
. Assuming a queue contains no incorrectly typed elements prior to the time a dynamically typesafe view is generated, and that all subsequent access to the queue takes place through the view, it is guaranteed that the queue cannot contain an incorrectly typed element.
A discussion of the use of dynamically typesafe views may be found in the documentation for the #checkedCollection checkedCollection
method.
The returned queue will be serializable if the specified queue is serializable.
Since null
is considered to be a value of any reference type, the returned queue permits insertion of null
elements whenever the backing queue does.
Added in 1.8.
Java documentation for java.util.Collections.checkedQueue(java.util.Queue<E>, java.lang.Class<E>)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.