Uses of Interface
org.openjdk.jmc.common.collection.BoundedList.INode
-
Packages that use BoundedList.INode Package Description org.openjdk.jmc.common.collection -
-
Uses of BoundedList.INode in org.openjdk.jmc.common.collection
Classes in org.openjdk.jmc.common.collection that implement BoundedList.INode Modifier and Type Class Description private static class
BoundedList.Node<T>
Private class used to wrap values as nodes.Fields in org.openjdk.jmc.common.collection declared as BoundedList.INode Modifier and Type Field Description private BoundedList.INode<T>
BoundedList.BoundedIterator. current
private BoundedList.INode<T>
BoundedList. first
private BoundedList.INode<T>
BoundedList.BoundedIterator. last
private BoundedList.INode<T>
BoundedList. last
private BoundedList.INode<T>
BoundedList.Node. next
Methods in org.openjdk.jmc.common.collection that return BoundedList.INode Modifier and Type Method Description BoundedList.INode<T>
BoundedList.INode. getNext()
Get the next node in the list.Methods in org.openjdk.jmc.common.collection with parameters of type BoundedList.INode Modifier and Type Method 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)
Constructors in org.openjdk.jmc.common.collection with parameters of type BoundedList.INode Constructor Description BoundedIterator(int size, BoundedList.INode<T> first, BoundedList.INode<T> last)
-