Class SortedList<E extends Comparable<E>>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<E>
com.storedobject.common.SortedList<E>
Type Parameters:
E - the type of elements maintained by this list, extending Comparable.
All Implemented Interfaces:
Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess, SequencedCollection<E>

public class SortedList<E extends Comparable<E>> extends ArrayList<E>
A custom implementation of an ArrayList that maintains its elements in sorted order. Elements are required to implement the Comparable interface.
Author:
Syam
See Also: