public final class UnmodifiableSortedBag extends AbstractSortedBagDecorator implements Unmodifiable, Serializable
SortedBag
to ensure it can't be altered.
This class is Serializable from Commons Collections 3.1.
collection
Modifier and Type | Method and Description |
---|---|
boolean |
add(Object object)
(Violation)
Adds one copy the specified object to the Bag.
|
boolean |
add(Object object,
int count)
Adds
nCopies copies of the specified object to the Bag. |
boolean |
addAll(Collection coll) |
void |
clear() |
static SortedBag |
decorate(SortedBag bag)
Factory method to create an unmodifiable bag.
|
Iterator |
iterator()
Returns an
Iterator over the entire set of members,
including copies due to cardinality. |
boolean |
remove(Object object)
(Violation)
Removes all occurrences of the given object from the bag.
|
boolean |
remove(Object object,
int count)
Removes
nCopies copies of the specified object from the Bag. |
boolean |
removeAll(Collection coll)
(Violation)
Remove all elements represented in the given collection,
respecting cardinality.
|
boolean |
retainAll(Collection coll)
(Violation)
Remove any members of the bag that are not in the given
collection, respecting cardinality.
|
Set |
uniqueSet()
Returns a
Set of unique elements in the Bag. |
comparator, first, getSortedBag, last
getBag, getCount
contains, containsAll, equals, getCollection, hashCode, isEmpty, size, toArray, toArray, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
containsAll, getCount, size
public static SortedBag decorate(SortedBag bag)
If the bag passed in is already unmodifiable, it is returned.
bag
- the bag to decorate, must not be nullIllegalArgumentException
- if bag is nullpublic Iterator iterator()
Bag
Iterator
over the entire set of members,
including copies due to cardinality. This iterator is fail-fast
and will not tolerate concurrent modifications.iterator
in interface Iterable
iterator
in interface Collection
iterator
in interface Bag
iterator
in class AbstractCollectionDecorator
public boolean add(Object object)
Bag
If the object is already in the Bag.uniqueSet()
then increment its
count as reported by Bag.getCount(Object)
. Otherwise add it to the
Bag.uniqueSet()
and report its count as 1.
Since this method always increases the size of the bag,
according to the Collection.add(Object)
contract, it
should always return true
. Since it sometimes returns
false
, this method violates the contract.
add
in interface Collection
add
in interface Bag
add
in class AbstractCollectionDecorator
object
- the object to addtrue
if the object was not already in the uniqueSet
public boolean addAll(Collection coll)
addAll
in interface Collection
addAll
in class AbstractCollectionDecorator
public void clear()
clear
in interface Collection
clear
in class AbstractCollectionDecorator
public boolean remove(Object object)
Bag
This will also remove the object from the Bag.uniqueSet()
.
According to the Collection.remove(Object)
method,
this method should only remove the first occurrence of the
given object, not all occurrences.
remove
in interface Collection
remove
in interface Bag
remove
in class AbstractCollectionDecorator
true
if this call changed the collectionpublic boolean removeAll(Collection coll)
Bag
coll
contains n
copies of a given object,
the bag will have n
fewer copies, assuming the bag
had at least n
copies to begin with.
The Collection.removeAll(Collection)
method specifies
that cardinality should not be respected; this method should
remove all occurrences of every object contained in the
given collection.
removeAll
in interface Collection
removeAll
in interface Bag
removeAll
in class AbstractCollectionDecorator
coll
- the collection to removetrue
if this call changed the collectionpublic boolean retainAll(Collection coll)
Bag
coll
contains n
copies of a
given object and the bag has m > n
copies, then
delete m - n
copies from the bag. In addition, if
e
is an object in the bag but
!coll.contains(e)
, then remove e
and any
of its copies.
The Collection.retainAll(Collection)
method specifies
that cardinality should not be respected; this method should
keep all occurrences of every object contained in the
given collection.
retainAll
in interface Collection
retainAll
in interface Bag
retainAll
in class AbstractCollectionDecorator
coll
- the collection to retaintrue
if this call changed the collectionpublic boolean add(Object object, int count)
Bag
nCopies
copies of the specified object to the Bag.
If the object is already in the Bag.uniqueSet()
then increment its
count as reported by Bag.getCount(Object)
. Otherwise add it to the
Bag.uniqueSet()
and report its count as nCopies
.
add
in interface Bag
add
in class AbstractBagDecorator
object
- the object to addcount
- the number of copies to addtrue
if the object was not already in the uniqueSet
public boolean remove(Object object, int count)
Bag
nCopies
copies of the specified object from the Bag.
If the number of copies to remove is greater than the actual number of copies in the Bag, no error is thrown.
remove
in interface Bag
remove
in class AbstractBagDecorator
object
- the object to removecount
- the number of copies to removetrue
if this call changed the collectionCopyright © 2001–2015 The Apache Software Foundation. All rights reserved.