Package org.apache.jena.riot.lang
Class ReaderRIOTRDFXML
- java.lang.Object
-
- org.apache.jena.riot.lang.ReaderRIOTRDFXML
-
- All Implemented Interfaces:
ReaderRIOT
public class ReaderRIOTRDFXML extends java.lang.Object implements ReaderRIOT
RDF/XML.- See Also:
- http://www.w3.org/TR/rdf-syntax-grammar/
-
-
Field Summary
Fields Modifier and Type Field Description static ReaderRIOTFactoryfactorystatic booleanRiotUniformCompatibility
-
Constructor Summary
Constructors Constructor Description ReaderRIOTRDFXML(ErrorHandler errorHandler)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidparse()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.voidread(java.io.Reader reader, java.lang.String baseURI, ContentType ct, StreamRDF output, Context context)Read from an InputStream and output RDF on the StreamRDF.
-
-
-
Field Detail
-
factory
public static ReaderRIOTFactory factory
-
RiotUniformCompatibility
public static boolean RiotUniformCompatibility
-
-
Constructor Detail
-
ReaderRIOTRDFXML
public ReaderRIOTRDFXML(ErrorHandler errorHandler)
-
-
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.
-
read
public void read(java.io.Reader reader, 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:
reader- Reader. InputStreams are preferred because Reader do not allow RIOT to set the character set.baseURI- 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.
-
parse
public void parse()
-
-