Class ArrayListSet<E>

java.lang.Object
Type Parameters:
E - Value type.
All Implemented Interfaces:
Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess, SequencedCollection<E>

public class ArrayListSet<E> extends ArrayList<E>
An ArrayList that has the properties of a Set (Only one instance will appear even if duplicate elements are added).
Author:
Syam
See Also: