Package | Description |
---|---|
_templates.java.util | |
_templates.javolution.testing | |
_templates.javolution.util |
Modifier and Type | Class and Description |
---|---|
class |
ArrayList |
class |
LinkedList |
Modifier and Type | Method and Description |
---|---|
List |
List.subList(int fromIndex,
int toIndex) |
Modifier and Type | Method and Description |
---|---|
List |
TestSuite.tests()
Returns the collection of test cases belonging to this test suite.
|
Modifier and Type | Class and Description |
---|---|
class |
FastList
This class represents a linked list with real-time behavior;
smooth capacity increase and no memory allocation as long as the
list size does not exceed its initial capacity.
|
class |
FastTable
This class represents a random access collection with real-time behavior
(smooth capacity increase).
|
Modifier and Type | Method and Description |
---|---|
static List |
Index.rangeOf(int start,
int end)
Returns all the indices greater or equal to
start
but less than end . |
List |
FastTable.subList(int fromIndex,
int toIndex)
Returns a view of the portion of this list between the specified
indexes (instance of
FastList allocated from the "stack" when
executing in a StackContext ). |
List |
FastList.subList(int fromIndex,
int toIndex)
Returns a view of the portion of this list between the specified
indexes (allocated from the "stack" when executing in a
StackContext ). |
Copyright © 2005–2014 Javolution. All rights reserved.