- All Known Implementing Classes:
UpdateExecBuilderAdapter
,UpdateExecDatasetBuilder
,UpdateExecHTTPBuilder
public interface UpdateExecBuilder
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Set the context. if not set, defaults to the system context (ARQ.getContext()
).default void
execute()
Build and execute.parseCheck
(boolean parseCheck) Hint whether to immediately parse strings passed toupdate(String)
.Set a context entry.Set a context entry.default UpdateExecBuilder
substitution
(String var, org.apache.jena.graph.Node value) Provide a (Var name, Node) for substitution in the query when QueryExec is built.substitution
(Var var, org.apache.jena.graph.Node value) Provide a (Var, Node) for substitution in the query when QueryExec is built.substitution
(Binding binding) Provide a set of (Var, Node) for substitution in the query when QueryExec is built.Add the string to theUpdateRequest
being built.Add theUpdate
to theUpdateRequest
being built.update
(UpdateRequest request) Append the updates in anUpdateRequest
to theUpdateRequest
being built.
-
Method Details
-
update
Append the updates in anUpdateRequest
to theUpdateRequest
being built. -
update
Add theUpdate
to theUpdateRequest
being built. -
update
Add the string to theUpdateRequest
being built. Implementations may support theparseCheck(boolean)
hint to control whether or not to parse the given strings. -
parseCheck
Hint whether to immediately parse strings passed toupdate(String)
. -
set
Set a context entry. -
set
Set a context entry. -
context
Set the context. if not set, defaults to the system context (ARQ.getContext()
). -
substitution
Provide a set of (Var, Node) for substitution in the query when QueryExec is built. -
substitution
Provide a (Var, Node) for substitution in the query when QueryExec is built. -
substitution
Provide a (Var name, Node) for substitution in the query when QueryExec is built. -
build
UpdateExec build() -
execute
default void execute()Build and execute.
-