Uses of Interface
org.htmlparser.util.sort.Sortable
-
Packages that use Sortable Package Description org.htmlparser.lexer The lexer package is the base level I/O subsystem.org.htmlparser.util.sort Provides generic sorting and searching. -
-
Uses of Sortable in org.htmlparser.lexer
Classes in org.htmlparser.lexer that implement Sortable Modifier and Type Class Description class
PageIndex
A sorted array of integers, the positions of the first characters of each line. -
Uses of Sortable in org.htmlparser.util.sort
Methods in org.htmlparser.util.sort with parameters of type Sortable Modifier and Type Method Description static int
Sort. bsearch(Sortable set, Ordered ref)
Binary search for an objectstatic int
Sort. bsearch(Sortable set, Ordered ref, int lo, int hi)
Binary search for an objectstatic void
Sort. QuickSort(Sortable sortable)
This is a generic version of C.A.R Hoare's Quick Sort algorithm.static void
Sort. QuickSort(Sortable sortable, int lo0, int hi0)
This is a generic version of C.A.R Hoare's Quick Sort algorithm.
-