Package org.apache.jena.update
Interface UpdateExecutionBuilder
-
- All Known Implementing Classes:
UpdateExecutionDatasetBuilder
,UpdateExecutionHTTPBuilder
public interface UpdateExecutionBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateExecution
build()
UpdateExecutionBuilder
context(Context context)
default void
execute()
Build and executeUpdateExecutionBuilder
set(Symbol symbol, boolean value)
UpdateExecutionBuilder
set(Symbol symbol, java.lang.Object value)
UpdateExecutionBuilder
substitution(java.lang.String varName, RDFNode value)
UpdateExecutionBuilder
substitution(QuerySolution querySolution)
UpdateExecutionBuilder
update(java.lang.String updateRequestString)
Parse and update operations to theUpdateRequest
being built.UpdateExecutionBuilder
update(Update update)
Add theUpdate
to theUpdateRequest
being built.UpdateExecutionBuilder
update(UpdateRequest updateRequest)
Append the updates in anUpdateRequest
to theUpdateRequest
being built.
-
-
-
Method Detail
-
update
UpdateExecutionBuilder update(UpdateRequest updateRequest)
Append the updates in anUpdateRequest
to theUpdateRequest
being built.
-
update
UpdateExecutionBuilder update(Update update)
Add theUpdate
to theUpdateRequest
being built.
-
update
UpdateExecutionBuilder update(java.lang.String updateRequestString)
Parse and update operations to theUpdateRequest
being built.
-
set
UpdateExecutionBuilder set(Symbol symbol, java.lang.Object value)
-
set
UpdateExecutionBuilder set(Symbol symbol, boolean value)
-
context
UpdateExecutionBuilder context(Context context)
-
substitution
UpdateExecutionBuilder substitution(QuerySolution querySolution)
-
substitution
UpdateExecutionBuilder substitution(java.lang.String varName, RDFNode value)
-
build
UpdateExecution build()
-
execute
default void execute()
Build and execute
-
-