Uses of Class
org.eclipse.rdf4j.spring.dao.support.opbuilder.UpdateExecutionBuilder
-
Packages that use UpdateExecutionBuilder Package Description org.eclipse.rdf4j.spring.dao Rdf4j-Spring DAOorg.eclipse.rdf4j.spring.support -
-
Uses of UpdateExecutionBuilder in org.eclipse.rdf4j.spring.dao
Methods in org.eclipse.rdf4j.spring.dao that return UpdateExecutionBuilder Modifier and Type Method Description protected UpdateExecutionBuilder
RDF4JDao. getNamedUpdate(String key)
-
Uses of UpdateExecutionBuilder in org.eclipse.rdf4j.spring.support
Methods in org.eclipse.rdf4j.spring.support that return UpdateExecutionBuilder Modifier and Type Method Description UpdateExecutionBuilder
RDF4JTemplate. update(Class<?> owner, String operationName, Supplier<String> updateStringSupplier)
Uses a cachedUpdate
if one is available under the specifiedoperationName
for theRepositoryConnection
that is used, otherwise the query string is obtained from the specified supplier, a new Update is instantiated and cached for future calls to this method.UpdateExecutionBuilder
RDF4JTemplate. update(Class<?> owner, NamedSparqlSupplier namedSparqlSupplier)
Uses the providedNamedSparqlSupplier
for callingRDF4JTemplate.update(Class, String, Supplier)
.UpdateExecutionBuilder
RDF4JTemplate. update(String updateString)
Bypassing any caches, generates a new Update from the specified SPARQL string and returns a Builder for its execution.UpdateExecutionBuilder
RDF4JTemplate. updateFromResource(Class<?> owner, String resourceName)
Reads the update from the specified resource and provides it through a
inRDF4JTemplate.update(Class, String, Supplier)
, using theresourceName
as theoperationName
.UpdateExecutionBuilder
RDF4JTemplate. updateWithoutCachingStatement(String updateString)
-