Uses of Class
org.apache.jena.update.Update
-
-
Uses of Update in org.apache.jena.http.sys
Methods in org.apache.jena.http.sys with parameters of type Update Modifier and Type Method Description Y
ExecUpdateHTTPBuilder. update(Update update)
Add the update. -
Uses of Update in org.apache.jena.sparql.exec
Methods in org.apache.jena.sparql.exec with parameters of type Update Modifier and Type Method Description UpdateExecBuilder
UpdateExecBuilder. update(Update update)
Set the update.UpdateExecDatasetBuilder
UpdateExecDatasetBuilder. update(Update update)
Add theUpdate
to theUpdateRequest
being built. -
Uses of Update in org.apache.jena.sparql.lang.arq
Methods in org.apache.jena.sparql.lang.arq that return Update Modifier and Type Method Description Update
ARQParser. Add()
Update
ARQParser. Clear()
Update
ARQParser. Copy()
Update
ARQParser. Create()
Update
ARQParser. DeleteWhere()
Update
ARQParser. Drop()
Update
ARQParser. Load()
Update
ARQParser. Modify()
Update
ARQParser. Move()
-
Uses of Update in org.apache.jena.sparql.lang.sparql_11
Methods in org.apache.jena.sparql.lang.sparql_11 that return Update Modifier and Type Method Description Update
SPARQLParser11. Add()
Update
SPARQLParser11. Clear()
Update
SPARQLParser11. Copy()
Update
SPARQLParser11. Create()
Update
SPARQLParser11. DeleteWhere()
Update
SPARQLParser11. Drop()
Update
SPARQLParser11. Load()
Update
SPARQLParser11. Modify()
Update
SPARQLParser11. Move()
-
Uses of Update in org.apache.jena.sparql.modify
Methods in org.apache.jena.sparql.modify with parameters of type Update Modifier and Type Method Description static boolean
UpdateCompare. isomorphic(Update req1, Update req2)
void
UpdateRequestSink. send(Update update)
void
UpdateVisitorSink. send(Update update)
void
UsingUpdateSink. send(Update update)
-
Uses of Update in org.apache.jena.sparql.modify.request
Subclasses of Update in org.apache.jena.sparql.modify.request Modifier and Type Class Description class
UpdateAdd
class
UpdateBinaryOp
class
UpdateClear
class
UpdateCopy
class
UpdateCreate
class
UpdateData
class
UpdateDataDelete
class
UpdateDataInsert
class
UpdateDeleteInsert
Convenience class - renames UpdateModify so it follows the SPARQL Update spec.class
UpdateDeleteWhere
class
UpdateDrop
class
UpdateDropClear
class
UpdateLoad
class
UpdateModify
class
UpdateMove
class
UpdateWithUsing
Methods in org.apache.jena.sparql.modify.request with parameters of type Update Modifier and Type Method Description boolean
UpdateBinaryOp. equalTo(Update obj, NodeIsomorphismMap isoMap)
boolean
UpdateCreate. equalTo(Update obj, NodeIsomorphismMap isoMap)
boolean
UpdateData. equalTo(Update obj, NodeIsomorphismMap isoMap)
boolean
UpdateDeleteWhere. equalTo(Update obj, NodeIsomorphismMap isoMap)
boolean
UpdateDropClear. equalTo(Update obj, NodeIsomorphismMap isoMap)
boolean
UpdateLoad. equalTo(Update obj, NodeIsomorphismMap isoMap)
boolean
UpdateModify. equalTo(Update obj, NodeIsomorphismMap isoMap)
static void
UpdateWriter. output(Update update, org.apache.jena.atlas.io.IndentedWriter out, SerializationContext sCxt)
void
UpdateSerializer. update(Update update)
Serializes the given updatevoid
UpdateWriter. update(Update update)
Method parameters in org.apache.jena.sparql.modify.request with type arguments of type Update Modifier and Type Method Description void
UpdateSerializer. update(java.lang.Iterable<? extends Update> updates)
Serializes a sequence of updatesvoid
UpdateSerializer. update(java.util.Iterator<? extends Update> updateIter)
Serializes a sequence of updatesvoid
UpdateWriter. update(java.lang.Iterable<? extends Update> updates)
void
UpdateWriter. update(java.util.Iterator<? extends Update> updateIter)
-
Uses of Update in org.apache.jena.sparql.syntax.syntaxtransform
Methods in org.apache.jena.sparql.syntax.syntaxtransform that return Update Modifier and Type Method Description static Update
UpdateTransformOps. transform(Update update, java.util.Map<Var,Node> substitutions)
static Update
UpdateTransformOps. transform(Update update, ElementTransform transform, ExprTransform exprTransform)
static Update
UpdateTransformOps. transformUpdate(Update update, java.util.Map<java.lang.String,? extends RDFNode> substitutions)
Methods in org.apache.jena.sparql.syntax.syntaxtransform with parameters of type Update Modifier and Type Method Description static Update
UpdateTransformOps. transform(Update update, java.util.Map<Var,Node> substitutions)
static Update
UpdateTransformOps. transform(Update update, ElementTransform transform, ExprTransform exprTransform)
static Update
UpdateTransformOps. transformUpdate(Update update, java.util.Map<java.lang.String,? extends RDFNode> substitutions)
-
Uses of Update in org.apache.jena.update
Methods in org.apache.jena.update that return types with arguments of type Update Modifier and Type Method Description java.util.List<Update>
UpdateRequest. getOperations()
java.util.Iterator<Update>
UpdateRequest. iterator()
Methods in org.apache.jena.update with parameters of type Update Modifier and Type Method Description UpdateRequest
UpdateRequest. add(Update update)
static UpdateExecution
UpdateExecutionFactory. create(Update update, Dataset dataset)
Create an UpdateExecution appropriate to the datasetGraph, or null if no available factory to make an UpdateExecutionstatic UpdateExec
UpdateExecutionFactory. create(Update update, Dataset dataset, QuerySolution inputBinding)
Deprecated.UseUpdateExecution.dataset(dataset)... build()
static UpdateExec
UpdateExecutionFactory. create(Update update, DatasetGraph datasetGraph)
Deprecated.UseUpdateExec.dataset(datasetGraph)... build();
static UpdateExec
UpdateExecutionFactory. create(Update update, DatasetGraph datasetGraph, Binding inputBinding)
Deprecated.UseUpdateExec.dataset(datasetGraph)... build()
static UpdateExecution
UpdateExecutionFactory. createRemote(Update update, java.lang.String remoteEndpoint)
Create an UpdateExecution that sends the update to a remote SPARQL Update service.static UpdateExecution
UpdateExecutionFactory. createRemote(Update update, java.lang.String remoteEndpoint, Context context)
Deprecated.UseUpdateExecution.service(remoteEndpoint)...build();
static UpdateExecution
UpdateExecutionFactory. createRemoteForm(Update update, java.lang.String remoteEndpoint)
Deprecated.UseUpdateExecution.service(remoteEndpoint).snedMode(UpdateSendMode.asPostForm)..build();
static UpdateExecution
UpdateExecutionFactory. createRemoteForm(Update update, java.lang.String remoteEndpoint, Context context)
Deprecated.UseUpdateExecution.service(remoteEndpoint)...build();
abstract boolean
Update. equalTo(Update other, NodeIsomorphismMap isoMap)
Compare by isomorphism - if the isomorphism map is null, compare nodes by .equalsstatic void
UpdateAction. execute(Update update, Graph graph)
Execute a single SPARQL Update operation.static void
UpdateAction. execute(Update update, Dataset dataset)
Execute a single SPARQL Update operation.static void
UpdateAction. execute(Update update, Dataset dataset, QuerySolution inputBinding)
Execute a single SPARQL Update operation.static void
UpdateAction. execute(Update update, Model model)
Execute a single SPARQL Update operation.static void
UpdateAction. execute(Update update, DatasetGraph dataset)
Execute a single SPARQL Update operation.static void
UpdateAction. execute(Update update, DatasetGraph datasetGraph, Binding inputBinding)
Execute a single SPARQL Update operation.UpdateExecutionBuilder
UpdateExecutionBuilder. update(Update update)
Add theUpdate
to theUpdateRequest
being built.UpdateExecutionDatasetBuilder
UpdateExecutionDatasetBuilder. update(Update update)
Add theUpdate
to theUpdateRequest
being built.Constructors in org.apache.jena.update with parameters of type Update Constructor Description UpdateRequest(Update update)
-