Class LinkedHashSet
dw.util
Class LinkedHashSet
Object
dw.util.Collection
dw.util.Set
dw.util.LinkedHashSet
The class LinkedHashSet implements a hash set with a guaranteed iteration order. The elements are iterated in the order they have been added to the HashSet.
Constructor Summary
LinkedHashSet()
Constructs a new LinkHashSet.
LinkedHashSet(collection : Collection)
Constructor for a new LinkedHashSet.
Method Summary
clone() : LinkedHashSet
Returns a shallow copy of this set.
Constructor Detail
LinkedHashSet
public LinkedHashSet()
Constructs a new LinkHashSet.

LinkedHashSet
public LinkedHashSet(collection : Collection)
Constructor for a new LinkedHashSet. The constructor initializes the LinkedHashSet with the elements of the given collection.
Parameters:
collection - the collection of items to insert into this set.

Method Detail
clone
clone() : LinkedHashSet
Returns a shallow copy of this set.
Returns:
a shallow copy of this set.