An ordered list stores items in an order defined by the objects themselves. When an item is added, the implementation scans the list and asks all currently registered items whether they are "equal", "less than", or "greater than" the new item, and inserts at a position determined by these answers (or at the end of the list). A list can be ordered in an increasing manner, or decreasing.
@author Mark Little (mark@arjuna.com)
@version $Id: OrderedList.java 2342 2006-03-30 13:06:17Z $
@since JTS 1.2.4.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.