Package org.apache.jena.sparql.exec
Interface UpdateExecBuilder
-
- All Known Implementing Classes:
UpdateExecDatasetBuilder
,UpdateExecHTTPBuilder
public interface UpdateExecBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateExec
build()
UpdateExecBuilder
context(Context context)
Set the context.default void
execute()
Build and execute.UpdateExecBuilder
set(Symbol symbol, boolean value)
Set a context entry.UpdateExecBuilder
set(Symbol symbol, java.lang.Object value)
Set a context entry.default UpdateExecBuilder
substitution(java.lang.String var, Node value)
Provide a (Var name, Node) for substitution in the query when QueryExec is built.UpdateExecBuilder
substitution(Var var, Node value)
Provide a (Var, Node) for substitution in the query when QueryExec is built.UpdateExecBuilder
substitution(Binding binding)
Provide a set of (Var, Node) for substitution in the query when QueryExec is built.UpdateExecBuilder
update(java.lang.String updateString)
Set the update.UpdateExecBuilder
update(Update update)
Set the update.UpdateExecBuilder
update(UpdateRequest request)
Set the update.
-
-
-
Method Detail
-
update
UpdateExecBuilder update(UpdateRequest request)
Set the update.
-
update
UpdateExecBuilder update(Update update)
Set the update.
-
update
UpdateExecBuilder update(java.lang.String updateString)
Set the update.
-
set
UpdateExecBuilder set(Symbol symbol, java.lang.Object value)
Set a context entry.
-
set
UpdateExecBuilder set(Symbol symbol, boolean value)
Set a context entry.
-
context
UpdateExecBuilder context(Context context)
Set the context. if not set, defaults to the system context (ARQ.getContext()
).
-
substitution
UpdateExecBuilder substitution(Binding binding)
Provide a set of (Var, Node) for substitution in the query when QueryExec is built.
-
substitution
UpdateExecBuilder substitution(Var var, Node value)
Provide a (Var, Node) for substitution in the query when QueryExec is built.
-
substitution
default UpdateExecBuilder substitution(java.lang.String var, Node value)
Provide a (Var name, Node) for substitution in the query when QueryExec is built.
-
build
UpdateExec build()
-
execute
default void execute()
Build and execute.
-
-