This class is used to create a tree structure of objects. Each element in the tree is also a key to the next node down in the tree. In the ListedHashTree, the order in which values are added is preserved (not to be confused with SortedHashTree, which sorts the order of the values using the compare() function).
ListedHashTree is a different implementation of the {@link HashTree}collection class. In the ListedHashTree, the order in which values are added is preserved (not to be confused with {@link SortedHashTree}, which sorts the order of the values using the compare() function). Any listing of nodes or iteration through the list of nodes of a ListedHashTree will be given in the order in which the nodes were added to the tree.
@see HashTree
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.