Uses of Class
org.apache.jena.riot.RDFFormat

Packages that use RDFFormat
org.apache.jena.riot   
org.apache.jena.riot.out   
org.apache.jena.riot.system   
org.apache.jena.web   
 

Uses of RDFFormat in org.apache.jena.riot
 

Fields in org.apache.jena.riot declared as RDFFormat
static RDFFormat RDFFormat.JSONLD
           
static RDFFormat RDFFormat.JSONLD_FLAT
           
static RDFFormat RDFFormat.JSONLD_PRETTY
           
static RDFFormat RDFFormat.NQ
           
static RDFFormat RDFFormat.NQUADS
           
static RDFFormat RDFFormat.NQUADS_ASCII
           
static RDFFormat RDFFormat.NQUADS_UTF8
           
static RDFFormat RDFFormat.NT
           
static RDFFormat RDFFormat.NTRIPLES
           
static RDFFormat RDFFormat.NTRIPLES_ASCII
           
static RDFFormat RDFFormat.NTRIPLES_UTF8
           
static RDFFormat RDFFormat.RDFJSON
           
static RDFFormat RDFFormat.RDFNULL
          The "null" output format (a sink that prints nothing, usually quite efficiently)
static RDFFormat RDFFormat.RDFXML
           
static RDFFormat RDFFormat.RDFXML_ABBREV
           
static RDFFormat RDFFormat.RDFXML_PLAIN
           
static RDFFormat RDFFormat.RDFXML_PRETTY
           
static RDFFormat RDFFormat.TRIG
           
static RDFFormat RDFFormat.TRIG_BLOCKS
           
static RDFFormat RDFFormat.TRIG_FLAT
           
static RDFFormat RDFFormat.TRIG_PRETTY
           
static RDFFormat RDFFormat.TTL
           
static RDFFormat RDFFormat.TURTLE
           
static RDFFormat RDFFormat.TURTLE_BLOCKS
           
static RDFFormat RDFFormat.TURTLE_FLAT
           
static RDFFormat RDFFormat.TURTLE_PRETTY
           
 

Methods in org.apache.jena.riot that return RDFFormat
static RDFFormat RDFWriterRegistry.defaultSerialization(Lang lang)
          Return the format registered as the default for the language
 

Methods in org.apache.jena.riot that return types with arguments of type RDFFormat
static Collection<RDFFormat> RDFWriterRegistry.registeredDatasetFormats()
          All registered dataset formats
static Collection<RDFFormat> RDFWriterRegistry.registeredGraphFormats()
          All registered graph formats
 

Methods in org.apache.jena.riot with parameters of type RDFFormat
static boolean RDFWriterRegistry.contains(RDFFormat format)
          Is the RDFFormat registered for use?
 WriterGraphRIOT WriterGraphRIOTFactory.create(RDFFormat syntaxForm)
           
 WriterDatasetRIOT WriterDatasetRIOTFactory.create(RDFFormat syntaxForm)
           
static WriterDatasetRIOT RDFDataMgr.createDatasetWriter(RDFFormat serialization)
          Create a writer for an RDF language
static WriterGraphRIOT RDFDataMgr.createGraphWriter(RDFFormat serialization)
          Create a writer for an RDF language
static WriterDatasetRIOTFactory RDFWriterRegistry.getWriterDatasetFactory(RDFFormat serialization)
          Get the dataset writer factory asscoiated with the output format
static WriterGraphRIOTFactory RDFWriterRegistry.getWriterGraphFactory(RDFFormat serialization)
          Get the graph writer factory asscoiated with the output format
static void RDFWriterRegistry.register(Lang lang, RDFFormat format)
          Register the default serialization for the language (replace any existing registration).
static void RDFWriterRegistry.register(RDFFormat serialization, WriterDatasetRIOTFactory datasetWriterFactory)
          Register the serialization for datasets and it's associated factory
static void RDFWriterRegistry.register(RDFFormat serialization, WriterGraphRIOTFactory graphWriterFactory)
          Register the serialization for graphs and it's associated factory
static void RDFDataMgr.write(OutputStream out, DatasetGraph dataset, RDFFormat serialization)
          Write the graph to the output stream in the default serialization for the language.
static void RDFDataMgr.write(OutputStream out, Dataset dataset, RDFFormat serialization)
          Write the graph to the output stream in the default serialization for the language.
static void RDFDataMgr.write(OutputStream out, Graph graph, RDFFormat serialization)
          Write the graph to the output stream in the default serialization for the language.
static void RDFDataMgr.write(OutputStream out, Model model, RDFFormat serialization)
          Write the model to the output stream in the default serialization for the language.
static void RDFDataMgr.write(StringWriter out, DatasetGraph dataset, RDFFormat serialization)
          Write the graph to the output stream in the default serialization for the language.
static void RDFDataMgr.write(StringWriter out, Dataset dataset, RDFFormat serialization)
          Write the graph to the output stream in the default serialization for the language.
static void RDFDataMgr.write(StringWriter out, Graph graph, RDFFormat serialization)
          Write the graph to the output stream in the default serialization for the language.
static void RDFDataMgr.write(StringWriter out, Model model, RDFFormat serialization)
          Write the graph to the output stream in the default serialization for the language.
static void RDFDataMgr.write(Writer out, DatasetGraph dataset, RDFFormat serialization)
          Deprecated. Use of writers is deprecated - use an OutputStream
static void RDFDataMgr.write(Writer out, Dataset dataset, RDFFormat serialization)
          Deprecated. Use of writers is deprecated - use an OutputStream
static void RDFDataMgr.write(Writer out, Graph graph, RDFFormat serialization)
          Deprecated. Use of writers is deprecated - use an OutputStream
static void RDFDataMgr.write(Writer out, Model model, RDFFormat serialization)
          Deprecated. Use of writers is deprecated - use an OutputStream
 

Uses of RDFFormat in org.apache.jena.riot.out
 

Constructors in org.apache.jena.riot.out with parameters of type RDFFormat
JsonLDWriter(RDFFormat syntaxForm)
           
 

Uses of RDFFormat in org.apache.jena.riot.system
 

Methods in org.apache.jena.riot.system that return RDFFormat
static RDFFormat IO_JenaWriters.getFormatForJenaWriter(String jenaName)
          return the RDFFormat for the existing Jena writer name, or null
 

Methods in org.apache.jena.riot.system with parameters of type RDFFormat
static void IO_JenaWriters.setFormatForJenaWriter(String jenaName, RDFFormat format)
          Register an RDFFormat for a Jena writer name
 

Uses of RDFFormat in org.apache.jena.web
 

Methods in org.apache.jena.web that return RDFFormat
 RDFFormat DatasetGraphAccessorHTTP.getOutboundSyntax()
          RDF syntax to use when sending graphs with POST and PUT.
 

Methods in org.apache.jena.web with parameters of type RDFFormat
 void DatasetGraphAccessorHTTP.setOutboundSyntax(RDFFormat format)
          Set the RDF syntax to use when sending graphs with POST and PUT.
 



Licenced under the Apache License, Version 2.0