|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.collections.collection.AbstractCollectionDecorator org.apache.commons.collections.list.AbstractListDecorator org.apache.commons.collections.list.AbstractSerializableListDecorator org.apache.commons.collections.list.SetUniqueList
public class SetUniqueList
Decorates a List
to ensure that no duplicates are present
much like a Set
.
The List
interface makes certain assumptions/requirements.
This implementation breaks these in certain ways, but this is merely the
result of rejecting duplicates.
Each violation is explained in the method, but it should not affect you.
Bear in mind that Sets require immutable objects to function correctly.
The ListOrderedSet
class provides an alternative approach, by wrapping an existing Set and
retaining insertion order in the iterator.
This class is Serializable from Commons Collections 3.1.
Field Summary | |
---|---|
protected java.util.Set |
set
Internal Set to maintain uniqueness. |
Fields inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator |
---|
collection |
Constructor Summary | |
---|---|
protected |
SetUniqueList(java.util.List list,
java.util.Set set)
Constructor that wraps (not copies) the List and specifies the set to use. |
Method Summary | |
---|---|
void |
add(int index,
java.lang.Object object)
Adds an element to a specific index in the list if it is not already present. |
boolean |
add(java.lang.Object object)
Adds an element to the list if it is not already present. |
boolean |
addAll(java.util.Collection coll)
Adds an element to the end of the list if it is not already present. |
boolean |
addAll(int index,
java.util.Collection coll)
Adds a collection of objects to the end of the list avoiding duplicates. |
java.util.Set |
asSet()
Gets an unmodifiable view as a Set. |
void |
clear()
|
boolean |
contains(java.lang.Object object)
|
boolean |
containsAll(java.util.Collection coll)
|
static SetUniqueList |
decorate(java.util.List list)
Factory method to create a SetList using the supplied list to retain order. |
java.util.Iterator |
iterator()
|
java.util.ListIterator |
listIterator()
|
java.util.ListIterator |
listIterator(int index)
|
java.lang.Object |
remove(int index)
|
boolean |
remove(java.lang.Object object)
|
boolean |
removeAll(java.util.Collection coll)
|
boolean |
retainAll(java.util.Collection coll)
|
java.lang.Object |
set(int index,
java.lang.Object object)
Sets the value at the specified index avoiding duplicates. |
java.util.List |
subList(int fromIndex,
int toIndex)
|
Methods inherited from class org.apache.commons.collections.list.AbstractListDecorator |
---|
get, getList, indexOf, lastIndexOf |
Methods inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator |
---|
equals, getCollection, hashCode, isEmpty, size, toArray, toArray, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
equals, hashCode, isEmpty, size, toArray, toArray |
Field Detail |
---|
protected final java.util.Set set
Constructor Detail |
---|
protected SetUniqueList(java.util.List list, java.util.Set set)
The set and list must both be correctly initialised to the same elements.
set
- the set to decorate, must not be nulllist
- the list to decorate, must not be null
java.lang.IllegalArgumentException
- if set or list is nullMethod Detail |
---|
public static SetUniqueList decorate(java.util.List list)
If the list contains duplicates, these are removed (first indexed one kept).
A HashSet
is used for the set behaviour.
list
- the list to decorate, must not be null
java.lang.IllegalArgumentException
- if list is nullpublic java.util.Set asSet()
public boolean add(java.lang.Object object)
(Violation)
The List
interface requires that this method returns
true
always. However this class may return false
because of the Set
behaviour.
add
in interface java.util.Collection
add
in interface java.util.List
add
in class AbstractCollectionDecorator
object
- the object to add
public void add(int index, java.lang.Object object)
(Violation)
The List
interface makes the assumption that the element is
always inserted. This may not happen with this implementation.
add
in interface java.util.List
add
in class AbstractListDecorator
index
- the index to insert atobject
- the object to addpublic boolean addAll(java.util.Collection coll)
(Violation)
The List
interface makes the assumption that the element is
always inserted. This may not happen with this implementation.
addAll
in interface java.util.Collection
addAll
in interface java.util.List
addAll
in class AbstractCollectionDecorator
coll
- the collection to addpublic boolean addAll(int index, java.util.Collection coll)
Only elements that are not already in this list will be added, and duplicates from the specified collection will be ignored.
(Violation)
The List
interface makes the assumption that the elements
are always inserted. This may not happen with this implementation.
addAll
in interface java.util.List
addAll
in class AbstractListDecorator
index
- the index to insert atcoll
- the collection to add in iterator order
public java.lang.Object set(int index, java.lang.Object object)
The object is set into the specified index. Afterwards, any previous duplicate is removed If the object is not already in the list then a normal set occurs. If it is present, then the old version is removed.
set
in interface java.util.List
set
in class AbstractListDecorator
index
- the index to insert atobject
- the object to set
public boolean remove(java.lang.Object object)
remove
in interface java.util.Collection
remove
in interface java.util.List
remove
in class AbstractCollectionDecorator
public java.lang.Object remove(int index)
remove
in interface java.util.List
remove
in class AbstractListDecorator
public boolean removeAll(java.util.Collection coll)
removeAll
in interface java.util.Collection
removeAll
in interface java.util.List
removeAll
in class AbstractCollectionDecorator
public boolean retainAll(java.util.Collection coll)
retainAll
in interface java.util.Collection
retainAll
in interface java.util.List
retainAll
in class AbstractCollectionDecorator
public void clear()
clear
in interface java.util.Collection
clear
in interface java.util.List
clear
in class AbstractCollectionDecorator
public boolean contains(java.lang.Object object)
contains
in interface java.util.Collection
contains
in interface java.util.List
contains
in class AbstractCollectionDecorator
public boolean containsAll(java.util.Collection coll)
containsAll
in interface java.util.Collection
containsAll
in interface java.util.List
containsAll
in class AbstractCollectionDecorator
public java.util.Iterator iterator()
iterator
in interface java.lang.Iterable
iterator
in interface java.util.Collection
iterator
in interface java.util.List
iterator
in class AbstractCollectionDecorator
public java.util.ListIterator listIterator()
listIterator
in interface java.util.List
listIterator
in class AbstractListDecorator
public java.util.ListIterator listIterator(int index)
listIterator
in interface java.util.List
listIterator
in class AbstractListDecorator
public java.util.List subList(int fromIndex, int toIndex)
subList
in interface java.util.List
subList
in class AbstractListDecorator
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |