## Package: dw.util
# Class LinkedHashSet
## Inheritance Hierarchy
- Object
- dw.util.Collection
- dw.util.Set
- dw.util.LinkedHashSet
## Description
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
**Signature:** `clone() : LinkedHashSet`
Returns a shallow copy of this set.
## Constructor Detail
## Method Detail
## Method Details
### clone
**Signature:** `clone() : LinkedHashSet`
**Description:** Returns a shallow copy of this set.
**Returns:**
a shallow copy of this set.
---