| java.lang.Object | |
| ↳ | org.apache.commons.collections.bag.TypedSortedBag |
Decorates another SortedBag 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.
| Protected Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Restrictive constructor.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Factory method to create a typed sorted bag.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Restrictive constructor.
Factory method to create a typed sorted bag.
If there are any elements already in the bag being decorated, they are validated.
| bag | the bag to decorate, must not be null |
|---|---|
| type | the type to allow into the bag, must not be null |
| IllegalArgumentException | if bag or type is null |
|---|---|
| IllegalArgumentException | if the bag contains invalid elements |