Uses of Class
com.hp.hpl.jena.sparql.util.Context

Packages that use Context
com.hp.hpl.jena.query ARQ - A query engine for Jena, implementing SPARQL. 
com.hp.hpl.jena.sparql.algebra   
com.hp.hpl.jena.sparql.algebra.optimize   
com.hp.hpl.jena.sparql.core   
com.hp.hpl.jena.sparql.core.assembler   
com.hp.hpl.jena.sparql.core.describe   
com.hp.hpl.jena.sparql.engine   
com.hp.hpl.jena.sparql.engine.http   
com.hp.hpl.jena.sparql.engine.main   
com.hp.hpl.jena.sparql.engine.ref   
com.hp.hpl.jena.sparql.expr   
com.hp.hpl.jena.sparql.function   
com.hp.hpl.jena.sparql.mgt   
com.hp.hpl.jena.sparql.modify   
com.hp.hpl.jena.sparql.path.eval   
com.hp.hpl.jena.sparql.pfunction   
com.hp.hpl.jena.sparql.procedure   
com.hp.hpl.jena.sparql.util   
com.hp.hpl.jena.update   
org.apache.jena.atlas.data   
org.apache.jena.atlas.web.auth   
org.apache.jena.riot   
org.apache.jena.riot.adapters   
org.apache.jena.riot.lang   
org.apache.jena.riot.out   
org.apache.jena.riot.writer   
 

Uses of Context in com.hp.hpl.jena.query
 

Methods in com.hp.hpl.jena.query that return Context
 Context QueryExecution.getContext()
          The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph).
 Context Dataset.getContext()
          Get the context associated with this dataset
static Context ARQ.getContext()
           
 

Methods in com.hp.hpl.jena.query with parameters of type Context
static Plan QueryExecutionFactory.createPlan(Query query, DatasetGraph dataset, Binding input, Context context)
           
static void ARQ.enableOptimizer(Context context, boolean state)
          Switch the default optimizer on and off for a specific Context.
static void ARQ.setNormalMode(Context context)
          Explicitly set the values for normal operation.
static void ARQ.setStrictMode(Context context)
          Set strict mode for a given Context.
 

Uses of Context in com.hp.hpl.jena.sparql.algebra
 

Methods in com.hp.hpl.jena.sparql.algebra with parameters of type Context
static Op PropertyFunctionGenerator.buildPropertyFunctions(PropertyFunctionRegistry registry, OpBGP opBGP, Context context)
           
static Op Algebra.optimize(Op op, Context context)
          Apply static transformations to a query to optimize it
 

Constructors in com.hp.hpl.jena.sparql.algebra with parameters of type Context
AlgebraGenerator(Context context)
          Create a new generator
 

Uses of Context in com.hp.hpl.jena.sparql.algebra.optimize
 

Methods in com.hp.hpl.jena.sparql.algebra.optimize with parameters of type Context
 Rewrite Optimize.RewriterFactory.create(Context context)
           
static Op Optimize.optimize(Op op, Context context)
           
 

Constructors in com.hp.hpl.jena.sparql.algebra.optimize with parameters of type Context
OpVisitorExprPrepare(Context context)
           
TransformPropertyFunction(Context context)
           
 

Uses of Context in com.hp.hpl.jena.sparql.core
 

Methods in com.hp.hpl.jena.sparql.core that return Context
 Context DatasetImpl.getContext()
           
 Context DatasetGraphWrapper.getContext()
           
 Context DatasetGraphWithLock.getContext()
           
 Context DatasetGraphBase.getContext()
           
 Context DatasetGraph.getContext()
          Get the context associated with this object - may be null
 

Methods in com.hp.hpl.jena.sparql.core with parameters of type Context
static DatasetDescription DatasetDescription.create(Context context)
          Create a dataset description, given a context.
static DatasetDescription DatasetDescription.create(Query query, Context context)
          Create a dataset description, given a query and context.
static VarAlloc VarAlloc.get(Context context, Symbol name)
           
 

Uses of Context in com.hp.hpl.jena.sparql.core.assembler
 

Methods in com.hp.hpl.jena.sparql.core.assembler with parameters of type Context
static void AssemblerUtils.setContext(Resource r, Context context)
          Look for and set context declarations.
 

Uses of Context in com.hp.hpl.jena.sparql.core.describe
 

Methods in com.hp.hpl.jena.sparql.core.describe with parameters of type Context
static DescribeHandlerRegistry DescribeHandlerRegistry.get(Context context)
           
static void DescribeHandlerRegistry.set(Context context, DescribeHandlerRegistry reg)
           
 void DescribeHandler.start(Model accumulateResultModel, Context qContext)
          Start the describe process, passing in the result model.
 void DescribeBNodeClosure.start(Model accumulateResultModel, Context cxt)
           
 

Uses of Context in com.hp.hpl.jena.sparql.engine
 

Methods in com.hp.hpl.jena.sparql.engine that return Context
 Context QueryExecutionBase.getContext()
           
 Context ExecutionContext.getContext()
           
 

Methods in com.hp.hpl.jena.sparql.engine with parameters of type Context
 boolean QueryEngineFactoryWrapper.accept(Op op, DatasetGraph dsg, Context context)
           
 boolean QueryEngineFactory.accept(Op op, DatasetGraph dataset, Context context)
           
 boolean QueryEngineFactoryWrapper.accept(Query query, DatasetGraph dsg, Context context)
           
 boolean QueryEngineFactory.accept(Query query, DatasetGraph dataset, Context context)
           
 Plan QueryEngineFactoryWrapper.create(Op op, DatasetGraph dsg, Binding inputBinding, Context context)
           
 Plan QueryEngineFactory.create(Op op, DatasetGraph dataset, Binding inputBinding, Context context)
           
 Plan QueryEngineFactoryWrapper.create(Query query, DatasetGraph dsg, Binding inputBinding, Context context)
           
 Plan QueryEngineFactory.create(Query query, DatasetGraph dataset, Binding inputBinding, Context context)
           
 QueryIterator QueryEngineBase.evaluate(Op op, DatasetGraph dsg, Binding binding, Context context)
           
 QueryIterator OpEval.evaluate(Op op, DatasetGraph dsg, Binding binding, Context context)
           
 QueryEngineFactory QueryEngineRegistry.find(Op op, DatasetGraph dataset, Context context)
          Locate a suitable factory for this algebra expression and dataset
 QueryEngineFactory QueryEngineRegistry.find(Query query, DatasetGraph dataset, Context context)
          Locate a suitable factory for this query and dataset
static QueryEngineFactory QueryEngineRegistry.findFactory(Op op, DatasetGraph dataset, Context context)
          Locate a suitable factory for this algebra expression and dataset from the default registry
static QueryEngineFactory QueryEngineRegistry.findFactory(Query query, DatasetGraph dataset, Context context)
          Locate a suitable factory for this query and dataset from the default registry
 

Constructors in com.hp.hpl.jena.sparql.engine with parameters of type Context
ExecutionContext(Context params, Graph activeGraph, DatasetGraph dataset, OpExecutorFactory factory)
           
QueryExecutionBase(Query query, Dataset dataset, Context context, QueryEngineFactory qeFactory)
           
 

Uses of Context in com.hp.hpl.jena.sparql.engine.http
 

Methods in com.hp.hpl.jena.sparql.engine.http that return Context
 Context QueryEngineHTTP.getContext()
           
 

Methods in com.hp.hpl.jena.sparql.engine.http with parameters of type Context
static QueryIterator Service.exec(OpService op, Context context)
          Executes a service operator
 

Uses of Context in com.hp.hpl.jena.sparql.engine.main
 

Methods in com.hp.hpl.jena.sparql.engine.main with parameters of type Context
static StageGenerator StageBuilder.chooseStageGenerator(Context context)
           
 QueryIterator QueryEngineMain.eval(Op op, DatasetGraph dsg, Binding input, Context context)
           
static OpExecutorFactory QC.getFactory(Context context)
           
static StageGenerator StageBuilder.getGenerator(Context context)
           
static void QC.setFactory(Context context, OpExecutorFactory factory)
           
static void StageBuilder.setGenerator(Context context, StageGenerator builder)
           
 

Constructors in com.hp.hpl.jena.sparql.engine.main with parameters of type Context
QueryEngineMain(Op op, DatasetGraph dataset, Binding input, Context context)
           
QueryEngineMain(Query query, DatasetGraph dataset, Binding input, Context context)
           
QueryEngineMainQuad(Op op, DatasetGraph dataset, Binding input, Context context)
           
QueryEngineMainQuad(Query query, DatasetGraph dataset, Binding input, Context context)
           
 

Uses of Context in com.hp.hpl.jena.sparql.engine.ref
 

Methods in com.hp.hpl.jena.sparql.engine.ref with parameters of type Context
 QueryIterator QueryEngineRef.eval(Op op, DatasetGraph dsg, Binding binding, Context context)
           
 

Constructors in com.hp.hpl.jena.sparql.engine.ref with parameters of type Context
QueryEngineRef(Op op, DatasetGraph dataset, Binding input, Context context)
           
QueryEngineRef(Op op, DatasetGraph dataset, Context context)
           
QueryEngineRefQuad(Op op, DatasetGraph dataset, Binding input, Context context)
           
QueryEngineRefQuad(Op op, DatasetGraph dataset, Context context)
           
 

Uses of Context in com.hp.hpl.jena.sparql.expr
 

Methods in com.hp.hpl.jena.sparql.expr with parameters of type Context
 void E_Function.buildFunction(Context cxt)
           
 void ExprList.prepareExprs(Context context)
           
 

Constructors in com.hp.hpl.jena.sparql.expr with parameters of type Context
ExprBuild(Context context)
           
 

Uses of Context in com.hp.hpl.jena.sparql.function
 

Methods in com.hp.hpl.jena.sparql.function that return Context
 Context FunctionEnvBase.getContext()
           
 Context FunctionEnv.getContext()
          Return the context for this function call
 Context FunctionBase.getContext()
          Return the Context object for this execution
 

Methods in com.hp.hpl.jena.sparql.function with parameters of type Context
static FunctionRegistry FunctionRegistry.get(Context context)
           
static void FunctionRegistry.set(Context context, FunctionRegistry reg)
           
 

Constructors in com.hp.hpl.jena.sparql.function with parameters of type Context
FunctionEnvBase(Context context)
           
FunctionEnvBase(Context context, Graph activeGraph, DatasetGraph dataset)
           
 

Uses of Context in com.hp.hpl.jena.sparql.mgt
 

Methods in com.hp.hpl.jena.sparql.mgt with parameters of type Context
static void Explain.explain(BasicPattern bgp, Context context)
           
static void Explain.explain(Context context, String message)
           
static void Explain.explain(Context context, String format, Object... args)
           
static void Explain.explain(Node s, Path path, Node o, Context context)
           
static void Explain.explain(Op op, Context context)
           
static void Explain.explain(Query query, Context context)
           
static void Explain.explain(String message, BasicPattern bgp, Context context)
           
static void Explain.explain(String message, Node s, Path path, Node o, Context context)
           
static void Explain.explain(String message, Op op, Context context)
           
static void Explain.explain(String message, QuadPattern quads, Context context)
           
static void Explain.explain(String message, Query query, Context context)
           
static boolean Explain.explaining(Explain.InfoLevel level, org.slf4j.Logger logger, Context context)
           
 

Constructors in com.hp.hpl.jena.sparql.mgt with parameters of type Context
ContextMBean(Context context)
           
 

Uses of Context in com.hp.hpl.jena.sparql.modify
 

Methods in com.hp.hpl.jena.sparql.modify that return Context
 Context UpdateProcessRemoteBase.getContext()
           
 Context UpdateProcessorStreamingBase.getContext()
           
 Context UpdateProcessorBase.getContext()
           
 

Methods in com.hp.hpl.jena.sparql.modify with parameters of type Context
 boolean UpdateEngineFactory.accept(GraphStore graphStore, Context context)
          Answer whether this factory can produce an UpdateEngine for the specified GraphStore
 UpdateEngine UpdateEngineFactory.create(GraphStore graphStore, Binding inputBinding, Context context)
          Create the update engine - having returned true to accept, should not fail
 UpdateEngineFactory UpdateEngineRegistry.find(GraphStore graphStore, Context context)
          Locate a suitable factory for this dataset
static UpdateEngineFactory UpdateEngineRegistry.findFactory(GraphStore graphStore, Context context)
          Locate a suitable factory for this dataset from the default registry
 

Constructors in com.hp.hpl.jena.sparql.modify with parameters of type Context
UpdateEngineBase(GraphStore graphStore, Binding inputBinding, Context context)
           
UpdateEngineMain(GraphStore graphStore, Binding inputBinding, Context context)
          Creates a new Update Engine
UpdateEngineNonStreaming(GraphStore graphStore, Binding inputBinding, Context context)
          Creates a new Update Engine
UpdateEngineWorker(GraphStore graphStore, Binding inputBinding, Context context)
           
UpdateProcessorBase(UpdateRequest request, GraphStore graphStore, Binding inputBinding, Context context, UpdateEngineFactory factory)
           
UpdateProcessorStreamingBase(GraphStore graphStore, Binding inputBinding, Context context, UpdateEngineFactory factory)
           
UpdateProcessRemote(UpdateRequest request, String endpoint, Context context)
          Creates a new remote update processor that uses the application/sparql-update submission method
UpdateProcessRemote(UpdateRequest request, String endpoint, Context context, HttpAuthenticator authenticator)
          Creates a new remote update processor that uses the application/sparql-update submission method
UpdateProcessRemoteBase(UpdateRequest request, String endpoint, Context context)
          Creates a new remote update processor
UpdateProcessRemoteForm(UpdateRequest request, String endpoint, Context context)
          Creates a new remote update processor that uses the form URL encoded submission method
UpdateProcessRemoteForm(UpdateRequest request, String endpoint, Context context, HttpAuthenticator authenticator)
          Creates a new remote update processor that uses the form URL encoded submission method
 

Uses of Context in com.hp.hpl.jena.sparql.path.eval
 

Methods in com.hp.hpl.jena.sparql.path.eval with parameters of type Context
static Iterator<Node> PathEval.eval(Graph graph, Node node, Path path, Context context)
          Evaluate a path : SPARQL semantics
static Iterator<Node> PathEval.evalReverse(Graph graph, Node node, Path path, Context context)
          Evaluate a path
 

Constructors in com.hp.hpl.jena.sparql.path.eval with parameters of type Context
PathEngineSPARQL(Graph graph, Context context)
           
 

Uses of Context in com.hp.hpl.jena.sparql.pfunction
 

Methods in com.hp.hpl.jena.sparql.pfunction with parameters of type Context
static PropertyFunctionRegistry PropertyFunctionRegistry.chooseRegistry(Context context)
          Get the PropertyFunctionRegistry, defaulting to the global one
static PropertyFunctionRegistry PropertyFunctionRegistry.get(Context context)
           
static void PropertyFunctionRegistry.set(Context context, PropertyFunctionRegistry reg)
           
 

Uses of Context in com.hp.hpl.jena.sparql.procedure
 

Methods in com.hp.hpl.jena.sparql.procedure with parameters of type Context
static ProcedureRegistry ProcedureRegistry.get(Context context)
           
static void ProcedureRegistry.set(Context context, ProcedureRegistry reg)
           
 

Uses of Context in com.hp.hpl.jena.sparql.util
 

Fields in com.hp.hpl.jena.sparql.util declared as Context
static Context Context.emptyContext
           
 

Methods in com.hp.hpl.jena.sparql.util that return Context
 Context Context.copy()
          Return a copy of this context.
static Context Context.setupContext(Context context, DatasetGraph dataset)
           
 

Methods in com.hp.hpl.jena.sparql.util with parameters of type Context
 void Context.putAll(Context other)
           
static Context Context.setupContext(Context context, DatasetGraph dataset)
           
 

Constructors in com.hp.hpl.jena.sparql.util with parameters of type Context
Context(Context cxt)
          Create a context and initialize it with a copy of the named values of another one.
 

Uses of Context in com.hp.hpl.jena.update
 

Methods in com.hp.hpl.jena.update that return Context
 Context UpdateProcessorStreaming.getContext()
          The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph).
 Context UpdateProcessor.getContext()
          The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph).
 

Methods in com.hp.hpl.jena.update with parameters of type Context
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, Binding inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, QuerySolution inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.createRemote(UpdateRequest updateRequest, String remoteEndpoint, Context context)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemote(UpdateRequest updateRequest, String remoteEndpoint, Context context, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemote(Update update, String remoteEndpoint, Context context)
          Create an UpdateProcessor that sends the update to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemote(Update update, String remoteEndpoint, Context context, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(UpdateRequest updateRequest, String remoteEndpoint, Context context)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(UpdateRequest updateRequest, String remoteEndpoint, Context context, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(Update update, String remoteEndpoint, Context context)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(Update update, String remoteEndpoint, Context context, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, Binding inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, QuerySolution inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
 

Uses of Context in org.apache.jena.atlas.data
 

Methods in org.apache.jena.atlas.data with parameters of type Context
static
<E> ThresholdPolicy<E>
ThresholdPolicyFactory.policyFromContext(Context context)
          A threshold policy based on the ARQ.spillToDiskThreshold symbol in the given Context.
 

Uses of Context in org.apache.jena.atlas.web.auth
 

Constructors in org.apache.jena.atlas.web.auth with parameters of type Context
ServiceAuthenticator(Context context)
          Creates a new authenticator using the given context
ServiceAuthenticator(Context context, String username, char[] password)
          Creates a new authenticator using the given context, the provided credentials are used as fallback if the context contains no registered credentials for a target URI
 

Uses of Context in org.apache.jena.riot
 

Methods in org.apache.jena.riot with parameters of type Context
static TypedInputStream RDFDataMgr.open(String filenameOrURI, Context context)
          Open a stream to the destination (URI or filename) Performs content negotiation, including looking at file extension.
static void RDFDataMgr.parse(StreamRDF sink, InputStream in, String base, Lang hintLang, Context context)
          Read RDF data.
static void RDFDataMgr.parse(StreamRDF sink, Reader in, String base, Lang hintLang, Context context)
          Read RDF data.
static void RDFDataMgr.parse(StreamRDF sink, String uri, Lang hintLang, Context context)
          Read RDF data.
static void RDFDataMgr.parse(StreamRDF sink, String uri, String base, Lang hintLang, Context context)
          Read RDF data.
static void RDFDataMgr.parse(StreamRDF sink, TypedInputStream in, String base, Context context)
          Read RDF data.
static void RDFDataMgr.read(DatasetGraph dataset, String uri, Lang hintLang, Context context)
          Read quads or triples into a Dataset from the given location.
static void RDFDataMgr.read(DatasetGraph dataset, String uri, String base, Lang hintLang, Context context)
          Read quads or triples into a Dataset from the given location.
static void RDFDataMgr.read(Dataset dataset, String uri, Lang hintLang, Context context)
          Read quads or triples into a Dataset from the given location.
static void RDFDataMgr.read(Dataset dataset, String uri, String base, Lang hintLang, Context context)
          Read quads or triples into a Dataset from the given location.
static void RDFDataMgr.read(Graph graph, String uri, Context context)
          Read triples into a Model from the given location, with some parameters for the reader
static void RDFDataMgr.read(Graph graph, String uri, Lang hintLang, Context context)
          Read triples into a Model from the given location, with hint of language and with some parameters for the reader
static void RDFDataMgr.read(Graph graph, String uri, String base, Lang hintLang, Context context)
          Read triples into a Model from the given location, with hint of language and the with some parameters for the reader Throws parse errors depending on the language and reader; the graph may be partially updated.
 void ReaderRIOTBase.read(InputStream in, String baseURI, ContentType ct, StreamRDF output, Context context)
           
 void ReaderRIOT.read(InputStream in, String baseURI, ContentType ct, StreamRDF output, Context context)
          Read from an InputStream and output RDF on the StreamRDF.
abstract  void ReaderRIOTBase.read(InputStream in, String baseURI, Lang lang, StreamRDF output, Context context)
           
static void RDFDataMgr.read(Model model, String uri, Context context)
          Read triples into a Model from the given location, with some parameters for the reader
static void RDFDataMgr.read(Model model, String uri, Lang hintLang, Context context)
          Read triples into a Model from the given location, with hint of language and the with some parameters for the reader
static void RDFDataMgr.read(Model model, String uri, String base, Lang hintLang, Context context)
          Read triples into a Model from the given location, with hint of language and with some parameters for the reader.
 void ReaderRIOT.read(Reader reader, String baseURI, ContentType ct, StreamRDF output, Context context)
          Read from an InputStream and output RDF on the StreamRDF.
 void WriterDatasetRIOT.write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
           
 void WriterGraphRIOT.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void WriterDatasetRIOT.write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
          Use of Writer is discouraged - let the serializer manage character sets in accordance with the format
 void WriterGraphRIOT.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
          Use of Writer is discouraged - let the serializer manage character sets in accordance with the format
 

Uses of Context in org.apache.jena.riot.adapters
 

Methods in org.apache.jena.riot.adapters with parameters of type Context
 void AdapterRDFWriter.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void AdapterRDFWriter.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 

Uses of Context in org.apache.jena.riot.lang
 

Methods in org.apache.jena.riot.lang with parameters of type Context
 void JsonLDReader.read(InputStream in, String baseURI, ContentType ct, StreamRDF output, Context context)
           
 void JsonLDReader.read(Reader reader, String baseURI, ContentType ct, StreamRDF output, Context context)
           
 

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

Methods in org.apache.jena.riot.out with parameters of type Context
 void JsonLDWriter.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 void JsonLDWriter.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 

Uses of Context in org.apache.jena.riot.writer
 

Methods in org.apache.jena.riot.writer with parameters of type Context
abstract  void WriterDatasetRIOTBase.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 void TriGWriterBase.write(OutputStream out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context)
           
 void NullWriter.write(OutputStream out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NQuadsWriter.write(OutputStream out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
abstract  void WriterGraphRIOTBase.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void TurtleWriterBase.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void RDFJSONWriter.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NTriplesWriter.write(OutputStream out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
abstract  void WriterDatasetRIOTBase.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
 void TriGWriterBase.write(Writer out, DatasetGraph dsg, PrefixMap prefixMap, String baseURI, Context context)
           
 void NullWriter.write(Writer out, DatasetGraph datasetGraph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NQuadsWriter.write(Writer out, DatasetGraph dataset, PrefixMap prefixMap, String baseURI, Context context)
           
abstract  void WriterGraphRIOTBase.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void TurtleWriterBase.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void RDFJSONWriter.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 void NTriplesWriter.write(Writer out, Graph graph, PrefixMap prefixMap, String baseURI, Context context)
           
 



Licenced under the Apache License, Version 2.0