edu.stanford.nlp.classify
Class LinkedList

java.lang.Object
  |
  +--edu.stanford.nlp.classify.LinkedList

public class LinkedList
extends Object

A linked list class.


Constructor Summary
LinkedList()
           
 
Method Summary
 void add(Object o)
           
 boolean contains(Object o)
           
 boolean hasNext()
           
 Object next()
           
 void reset()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LinkedList

public LinkedList()
Method Detail

add

public void add(Object o)

contains

public boolean contains(Object o)

reset

public void reset()

hasNext

public boolean hasNext()

next

public Object next()


Stanford NLP Group