|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FastTable | |
---|---|
javolution.util | Provides high-performance collection classes and miscellaneous utilities; although
this package provides very few collection classes, they are substitutes for
most of java.util.* classes (for example, java.util.IdentityHashMap would be
a FastMap with an identity key comparator). |
Uses of FastTable in javolution.util |
---|
Methods in javolution.util that return FastTable | ||
---|---|---|
static
|
FastTable.newInstance()
Returns a new, preallocated or recycled table instance
(on the stack when executing in a StackContext ). |
|
FastTable<E> |
FastTable.setValueComparator(FastComparator<? super E> comparator)
Sets the comparator to use for value equality or comparison if the collection is ordered (see sort() ). |
|
FastTable<E> |
FastTable.sort()
Sorts this table in place (quick sort) using this table value comparator
(smallest first). |
Methods in javolution.util with parameters of type FastTable | |
---|---|
static void |
FastTable.recycle(FastTable instance)
Recycles a table instance immediately
(on the stack when executing in a StackContext ). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |