jmce - 1_02

jmce.util
Class FastLinkedList.Node<T>

java.lang.Object
  extended by jmce.util.FastLinkedList.Node<T>
Enclosing class:
FastLinkedList<T>

public static class FastLinkedList.Node<T>
extends java.lang.Object

Inner class to hold a link and the element.


Method Summary
 T get()
          Return the element of this node
 boolean hasNext()
          Return true if the node has a valid next
 FastLinkedList.Node<T> Next()
          Return the next node
 FastLinkedList.Node<T> Previous()
          Return the previous node
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get

public final T get()
Return the element of this node


Next

public final FastLinkedList.Node<T> Next()
Return the next node


Previous

public final FastLinkedList.Node<T> Previous()
Return the previous node


hasNext

public final boolean hasNext()
Return true if the node has a valid next


jmce - 1_02