org.apache.jena.riot.lang
Class PipedRDFStream<T>

java.lang.Object
  extended by org.apache.jena.riot.lang.PipedRDFStream<T>
Type Parameters:
T - Type corresponding to a supported RDF primitive
All Implemented Interfaces:
StreamRDF
Direct Known Subclasses:
PipedQuadsStream, PipedTriplesStream, PipedTuplesStream

public abstract class PipedRDFStream<T>
extends Object
implements StreamRDF

Abstract implementation of a producer class that implements StreamRDF; use one of the concrete implementations that match the RDF primitive you are using.

See Also:
PipedTriplesStream, PipedQuadsStream, PipedTuplesStream

Method Summary
 void base(String base)
          base declaration seen
 void finish()
          Finish parsing
 void prefix(String prefix, String iri)
          prefix declaration seen
 void start()
          Start parsing
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.apache.jena.riot.system.StreamRDF
quad, triple, tuple
 

Method Detail

base

public void base(String base)
Description copied from interface: StreamRDF
base declaration seen

Specified by:
base in interface StreamRDF

prefix

public void prefix(String prefix,
                   String iri)
Description copied from interface: StreamRDF
prefix declaration seen

Specified by:
prefix in interface StreamRDF

start

public void start()
Description copied from interface: StreamRDF
Start parsing

Specified by:
start in interface StreamRDF

finish

public void finish()
Description copied from interface: StreamRDF
Finish parsing

Specified by:
finish in interface StreamRDF


Licenced under the Apache License, Version 2.0