Package org.apache.jena.riot
Class ReaderRIOTBase
- java.lang.Object
-
- org.apache.jena.riot.ReaderRIOTBase
-
- All Implemented Interfaces:
ReaderRIOT
public abstract class ReaderRIOTBase extends java.lang.Object implements ReaderRIOT
-
-
Constructor Summary
Constructors Constructor Description ReaderRIOTBase()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidread(java.io.InputStream in, java.lang.String baseURI, ContentType ct, StreamRDF output, Context context)Read from an InputStream and output RDF on the StreamRDF.abstract voidread(java.io.InputStream in, java.lang.String baseURI, Lang lang, StreamRDF output, Context context)-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.jena.riot.ReaderRIOT
read
-
-
-
-
Method Detail
-
read
public void read(java.io.InputStream in, java.lang.String baseURI, ContentType ct, StreamRDF output, Context context)Description copied from interface:ReaderRIOTRead from an InputStream and output RDF on the StreamRDF.- Specified by:
readin interfaceReaderRIOT- Parameters:
in- InputStreambaseURI- Base URI (or null)ct- Content-Type if available. Routing to the right parser will have already been done so this only useful to get addition Content-Type information or if this ReaderRIOT can handle multiple media types.output- Destination for the parser output.context- Environment settings.
-
-