Package | Description |
---|---|
org.openjdk.jmc.common.collection |
Modifier and Type | Class and Description |
---|---|
private static class |
BoundedList.Node<T>
Private class used to wrap values as nodes.
|
Modifier and Type | Field and Description |
---|---|
private BoundedList.INode<T> |
BoundedList.BoundedIterator.current |
private BoundedList.INode<T> |
BoundedList.first |
private BoundedList.INode<T> |
BoundedList.last |
private BoundedList.INode<T> |
BoundedList.BoundedIterator.last |
private BoundedList.INode<T> |
BoundedList.Node.next |
Modifier and Type | Method and Description |
---|---|
BoundedList.INode<T> |
BoundedList.INode.getNext()
Get the next node in the list.
|
Modifier and Type | Method and Description |
---|---|
private void |
BoundedList.addNode(BoundedList.INode<T> t) |
void |
BoundedList.INode.setNext(BoundedList.INode<T> next)
Set the next node in the list.
|
void |
BoundedList.Node.setNext(BoundedList.INode<T> next) |
Constructor and Description |
---|
BoundedIterator(int size,
BoundedList.INode<T> first,
BoundedList.INode<T> last) |
BoundedIterator(int size,
BoundedList.INode<T> first,
BoundedList.INode<T> last) |