org.trippi.io
Class SparqlTupleIterator

java.lang.Object
  extended by org.trippi.TupleIterator
      extended by org.trippi.io.SparqlTupleIterator

public class SparqlTupleIterator
extends TupleIterator

Deserializes sparql results while iterating. http://www.w3.org/2001/sw/DataAccess/rf1/result


Field Summary
 
Fields inherited from class org.trippi.TupleIterator
INPUT_FORMATS, OUTPUT_FORMATS
 
Constructor Summary
SparqlTupleIterator(java.io.InputStream in)
           
 
Method Summary
 void close()
          Release resources held by this TupleIterator.
 boolean hasNext()
          Return true if there are more results.
 java.lang.String[] names()
          Get the names of the binding variables.
 java.util.Map next()
          Return the next result.
 
Methods inherited from class org.trippi.TupleIterator
count, finalize, fromStream, main, nextTriples, setAliasMap, toStream
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SparqlTupleIterator

public SparqlTupleIterator(java.io.InputStream in)
                    throws TrippiException
Throws:
TrippiException
Method Detail

hasNext

public boolean hasNext()
Description copied from class: TupleIterator
Return true if there are more results.

Specified by:
hasNext in class TupleIterator

next

public java.util.Map next()
                   throws TrippiException
Description copied from class: TupleIterator
Return the next result.

Specified by:
next in class TupleIterator
Throws:
TrippiException

names

public java.lang.String[] names()
Description copied from class: TupleIterator
Get the names of the binding variables. These will be the keys in the map for result.

Specified by:
names in class TupleIterator

close

public void close()
           throws TrippiException
Description copied from class: TupleIterator
Release resources held by this TupleIterator.

Specified by:
close in class TupleIterator
Throws:
TrippiException