Package | Description |
---|---|
com.hp.hpl.jena.query |
ARQ - A query engine for Jena, implementing SPARQL.
|
com.hp.hpl.jena.sparql.lang | |
com.hp.hpl.jena.sparql.modify | |
com.hp.hpl.jena.sparql.modify.request | |
com.hp.hpl.jena.update |
Modifier and Type | Method and Description |
---|---|
UpdateRequest |
ParameterizedSparqlString.asUpdate()
Attempts to take the command text with parameters injected from the
ParameterizedSparqlString.toString() method and parse it as a UpdateRequest |
Modifier and Type | Method and Description |
---|---|
UpdateRequest |
ParserSPARQL11Update.parse(UpdateRequest update,
InputStream in) |
UpdateRequest |
UpdateParser.parse(UpdateRequest request,
InputStream input) |
UpdateRequest |
ParserARQUpdate.parse(UpdateRequest update,
Reader r)
Use with care - Reader must be UTF-8
|
UpdateRequest |
ParserSPARQL11Update.parse(UpdateRequest update,
Reader r) |
UpdateRequest |
UpdateParser.parse(UpdateRequest request,
String updateString) |
Modifier and Type | Method and Description |
---|---|
UpdateRequest |
ParserSPARQL11Update.parse(UpdateRequest update,
InputStream in) |
UpdateRequest |
UpdateParser.parse(UpdateRequest request,
InputStream input) |
UpdateRequest |
ParserARQUpdate.parse(UpdateRequest update,
Reader r)
Use with care - Reader must be UTF-8
|
UpdateRequest |
ParserSPARQL11Update.parse(UpdateRequest update,
Reader r) |
UpdateRequest |
UpdateParser.parse(UpdateRequest request,
String updateString) |
void |
ParserQueryBase.setUpdateRequest(UpdateRequest request) |
Modifier and Type | Method and Description |
---|---|
boolean |
UpdateEngineFactory.accept(UpdateRequest request,
GraphStore graphStore,
Context context)
Answer whether this factory can produce an UpdateEngine for the UpdateRequest and GraphStore
|
UpdateEngine |
UpdateEngineFactory.create(UpdateRequest request,
GraphStore graphStore,
Binding inputBinding,
Context context)
Create the request - having returned true to accept, should not fail
|
UpdateEngineFactory |
UpdateEngineRegistry.find(UpdateRequest request,
GraphStore graphStore,
Context context)
Locate a suitable factory for this query and dataset
|
static UpdateEngineFactory |
UpdateEngineRegistry.findFactory(UpdateRequest request,
GraphStore graphStore,
Context context)
Locate a suitable factory for this query and dataset from the default registry
|
void |
GraphStoreBasic.finishRequest(UpdateRequest request) |
void |
GraphStoreNull.finishRequest(UpdateRequest request) |
void |
GraphStoreWrapper.finishRequest(UpdateRequest request) |
void |
GraphStoreBasic.startRequest(UpdateRequest request) |
void |
GraphStoreNull.startRequest(UpdateRequest request) |
void |
GraphStoreWrapper.startRequest(UpdateRequest request) |
Constructor and Description |
---|
UpdateEngineBase(GraphStore graphStore,
UpdateRequest request,
Binding input,
Context context) |
UpdateEngineMain(GraphStore graphStore,
UpdateRequest request,
Binding initialBinding,
Context context) |
UpdateProcessorBase(UpdateRequest request,
GraphStore graphStore,
Context context,
UpdateEngineFactory factory) |
UpdateProcessRemote(UpdateRequest request,
String endpoint) |
UpdateProcessRemoteForm(UpdateRequest request,
String endpoint) |
Modifier and Type | Method and Description |
---|---|
static void |
UpdateWriter.output(UpdateRequest request,
IndentedWriter out) |
static void |
UpdateWriter.output(UpdateRequest request,
IndentedWriter out,
SerializationContext sCxt) |
Modifier and Type | Method and Description |
---|---|
UpdateRequest |
UpdateRequest.add(String string) |
UpdateRequest |
UpdateRequest.add(Update update) |
static UpdateRequest |
UpdateFactory.create()
Create an empty UpdateRequest
|
static UpdateRequest |
UpdateFactory.create(String string)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.create(String string,
String baseURI)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.create(String string,
String baseURI,
Syntax syntax)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.create(String string,
Syntax syntax)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.read(InputStream input)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.read(InputStream input,
String baseURI)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.read(InputStream input,
String baseURI,
Syntax syntax)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.read(InputStream input,
Syntax syntax)
Create an UpdateRequest by parsing from a string.
|
static UpdateRequest |
UpdateFactory.read(String fileName)
Create an UpdateRequest by reading it from a file
|
static UpdateRequest |
UpdateFactory.read(String fileName,
String baseURI,
Syntax syntax)
Create an UpdateRequest by reading it from a file
|
static UpdateRequest |
UpdateFactory.read(String fileName,
Syntax syntax)
Create an UpdateRequest by reading it from a file
|
Modifier and Type | Method and Description |
---|---|
static UpdateProcessor |
UpdateExecutionFactory.create(UpdateRequest updateRequest,
GraphStore graphStore)
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,
Binding initialBinding)
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 initialSolution)
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)
Create an UpdateProcessor that send the update request to a remote SPARQL Update service.
|
static UpdateProcessor |
UpdateExecutionFactory.createRemoteForm(UpdateRequest updateRequest,
String remoteEndpoint)
Create an UpdateProcessor that send the update request to a remote SPARQL Update service using an HTML form
|
static void |
UpdateAction.execute(UpdateRequest request,
Dataset dataset)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
DatasetGraph dataset)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
DatasetGraph dataset,
Binding initialBinding)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
Dataset dataset,
QuerySolution initialBinding)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
Graph graph)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
Graph graph,
Binding binding)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
GraphStore graphStore)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
GraphStore graphStore,
Binding binding)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
Model model)
Execute SPARQL Update operations.
|
static void |
UpdateAction.execute(UpdateRequest request,
Model model,
QuerySolution initialBinding)
Execute SPARQL Update operations.
|
void |
GraphStore.finishRequest(UpdateRequest request)
Signal end of a request being executed
|
static void |
UpdateFactory.parse(UpdateRequest request,
String updateString) |
static void |
UpdateFactory.parse(UpdateRequest request,
String updateString,
String baseURI) |
static void |
UpdateFactory.parse(UpdateRequest request,
String updateString,
String baseURI,
Syntax syntax) |
static void |
UpdateFactory.parse(UpdateRequest request,
String updateString,
Syntax syntax) |
void |
GraphStore.startRequest(UpdateRequest request)
Signal start of a request being executed
|
Licenced under the Apache License, Version 2.0