sem.graphreader
Interface GraphReader

All Known Implementing Classes:
CnCGraphReader, ParsevalGraphReader, RaspGraphReader, RaspXmlGraphReader, TSVGraphReader

public interface GraphReader

The general interface for a graph reader.


Method Summary
 void close()
           
 boolean hasNext()
           
 Graph next()
           
 java.util.ArrayList<Graph> nextSentence()
           
 void reset()
           
 

Method Detail

hasNext

boolean hasNext()

next

Graph next()
           throws GraphFormatException
Throws:
GraphFormatException

nextSentence

java.util.ArrayList<Graph> nextSentence()
                                        throws GraphFormatException
Throws:
GraphFormatException

reset

void reset()
           throws GraphFormatException
Throws:
GraphFormatException

close

void close()