Class LinkedSet<E>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
com.twelvemonkeys.util.LinkedSet<E>
All Implemented Interfaces:
Serializable, Cloneable, Iterable<E>, Collection<E>, Set<E>

public class LinkedSet<E> extends AbstractSet<E> implements Set<E>, Cloneable, Serializable
Generic map and linked list implementation of the Set interface, with predictable iteration order.

Resembles LinkedHashSet from JDK 1.4+, but is backed by a generic LinkedMap, rather than implementing a particular algoritm.

Version:
$Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/main/java/com/twelvemonkeys/util/LinkedSet.java#1 $
Author:
Harald Kuhr
See Also: