Uses of Interface
fr.dufrenoy.util.TreeList
-
-
Uses of TreeList in fr.dufrenoy.util
Classes in fr.dufrenoy.util that implement TreeList Modifier and Type Class Description classSynchronizedTreeList<E>A thread-safe implementation ofTreeListthat delegates to an innerUnsynchronizedTreeListprotected by aReentrantReadWriteLock.classUnsynchronizedTreeList<E>A non-thread-safe implementation ofTreeListbacked by a red-black tree augmented with subtree sizes (order-statistic tree).Methods in fr.dufrenoy.util that return TreeList Modifier and Type Method Description TreeList<E>SynchronizedTreeList. subList(int fromIndex, int toIndex)Returns a snapshot of the specified range as an independentUnsynchronizedTreeList.TreeList<E>TreeList. subList(int fromIndex, int toIndex)Returns a live view of the portion of this list whose elements range from the element atfromIndex(inclusive) to the element attoIndex(exclusive).TreeList<E>UnsynchronizedTreeList. subList(int fromIndex, int toIndex)Returns a live view of the portion of this list whose elements range from the element atfromIndex(inclusive) to the element attoIndex(exclusive).
-