Class ListOrderedSet
- All Implemented Interfaces:
Serializable
,Iterable
,Collection
,Set
Set
to ensure that the order of addition
is retained and used by the iterator.
If an object is added to the set for a second time, it will remain in the original position in the iteration. The order can be observed from the set via the iterator or toArray methods.
The ListOrderedSet also has various useful direct methods. These include many
from List
, such as get(int)
, remove(int)
and indexOf(int)
. An unmodifiable List
view of
the set can be obtained via asList()
.
This class cannot implement the List
interface directly as
various interface methods (notably equals/hashCode) are incompatable with a set.
This class is Serializable from Commons Collections 3.1.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
- Author:
- Stephen Colebourne, Henning P. Schmiedehausen
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final List
Internal list to hold the sequence of objectsFields inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator
collection
-
Constructor Summary
ConstructorsModifierConstructorDescriptionConstructs a new emptyListOrderedSet
using aHashSet
and anArrayList
internally.protected
ListOrderedSet
(Set set) Constructor that wraps (not copies).protected
ListOrderedSet
(Set set, List list) Constructor that wraps (not copies) the Set and specifies the list to use. -
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
boolean
addAll
(int index, Collection coll) boolean
addAll
(Collection coll) asList()
Gets an unmodifiable view of the order of the Set.void
clear()
static ListOrderedSet
Factory method to create an ordered set using the supplied list to retain order.static ListOrderedSet
Factory method to create an ordered set.static ListOrderedSet
Factory method to create an ordered set specifying the list and set to use.get
(int index) int
iterator()
remove
(int index) boolean
boolean
removeAll
(Collection coll) boolean
retainAll
(Collection coll) Object[]
toArray()
Object[]
toString()
Uses the underlying List's toString so that order is achieved.Methods inherited from class org.apache.commons.collections.set.AbstractSetDecorator
getSet
Methods inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator
contains, containsAll, equals, getCollection, hashCode, isEmpty, size
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.Set
contains, containsAll, equals, hashCode, isEmpty, size, spliterator
-
Field Details
-
setOrder
Internal list to hold the sequence of objects
-
-
Constructor Details
-
ListOrderedSet
public ListOrderedSet()Constructs a new emptyListOrderedSet
using aHashSet
and anArrayList
internally.- Since:
- Commons Collections 3.1
-
ListOrderedSet
Constructor that wraps (not copies).- Parameters:
set
- the set to decorate, must not be null- Throws:
IllegalArgumentException
- if set is null
-
ListOrderedSet
Constructor that wraps (not copies) the Set and specifies the list to use.The set and list must both be correctly initialised to the same elements.
- Parameters:
set
- the set to decorate, must not be nulllist
- the list to decorate, must not be null- Throws:
IllegalArgumentException
- if set or list is null
-
-
Method Details
-
decorate
Factory method to create an ordered set specifying the list and set to use.The list and set must both be empty.
- Parameters:
set
- the set to decorate, must be empty and not nulllist
- the list to decorate, must be empty and not null- Throws:
IllegalArgumentException
- if set or list is nullIllegalArgumentException
- if either the set or list is not empty- Since:
- Commons Collections 3.1
-
decorate
Factory method to create an ordered set.An
ArrayList
is used to retain order.- Parameters:
set
- the set to decorate, must not be null- Throws:
IllegalArgumentException
- if set is null
-
decorate
Factory method to create an ordered set using the supplied list to retain order.A
HashSet
is used for the set behaviour.NOTE: If the list contains duplicates, the duplicates are removed, altering the specified list.
- Parameters:
list
- the list to decorate, must not be null- Throws:
IllegalArgumentException
- if list is null
-
asList
Gets an unmodifiable view of the order of the Set.- Returns:
- an unmodifiable list view
-
clear
public void clear()- Specified by:
clear
in interfaceCollection
- Specified by:
clear
in interfaceSet
- Overrides:
clear
in classAbstractCollectionDecorator
-
iterator
- Specified by:
iterator
in interfaceCollection
- Specified by:
iterator
in interfaceIterable
- Specified by:
iterator
in interfaceSet
- Overrides:
iterator
in classAbstractCollectionDecorator
-
add
- Specified by:
add
in interfaceCollection
- Specified by:
add
in interfaceSet
- Overrides:
add
in classAbstractCollectionDecorator
-
addAll
- Specified by:
addAll
in interfaceCollection
- Specified by:
addAll
in interfaceSet
- Overrides:
addAll
in classAbstractCollectionDecorator
-
remove
- Specified by:
remove
in interfaceCollection
- Specified by:
remove
in interfaceSet
- Overrides:
remove
in classAbstractCollectionDecorator
-
removeAll
- Specified by:
removeAll
in interfaceCollection
- Specified by:
removeAll
in interfaceSet
- Overrides:
removeAll
in classAbstractCollectionDecorator
-
retainAll
- Specified by:
retainAll
in interfaceCollection
- Specified by:
retainAll
in interfaceSet
- Overrides:
retainAll
in classAbstractCollectionDecorator
-
toArray
- Specified by:
toArray
in interfaceCollection
- Specified by:
toArray
in interfaceSet
- Overrides:
toArray
in classAbstractCollectionDecorator
-
toArray
- Specified by:
toArray
in interfaceCollection
- Specified by:
toArray
in interfaceSet
- Overrides:
toArray
in classAbstractCollectionDecorator
-
get
-
indexOf
-
add
-
addAll
-
remove
-
toString
Uses the underlying List's toString so that order is achieved. This means that the decorated Set's toString is not used, so any custom toStrings will be ignored.- Overrides:
toString
in classAbstractCollectionDecorator
-