public class TypedCollection
extends java.lang.Object
Collection
to validate that elements added are of a specific type.
The validation of additions is performed via an instanceof test against
a specified Class
. If an object cannot be added to the
collection, an IllegalArgumentException is thrown.
Modifier and Type | Method and Description |
---|---|
static java.util.Collection |
decorate(java.util.Collection coll,
java.lang.Class type)
Factory method to create a typed collection.
|
public static java.util.Collection decorate(java.util.Collection coll, java.lang.Class type)
If there are any elements already in the collection being decorated, they are validated.
coll
- the collection to decorate, must not be nulltype
- the type to allow into the collection, must not be nulljava.lang.IllegalArgumentException
- if collection or type is nulljava.lang.IllegalArgumentException
- if the collection contains invalid elements"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"