Uses of Class
com.hp.hpl.jena.update.Update

Packages that use Update
com.hp.hpl.jena.sparql.lang.arq   
com.hp.hpl.jena.sparql.lang.sparql_11   
com.hp.hpl.jena.sparql.modify   
com.hp.hpl.jena.sparql.modify.request   
com.hp.hpl.jena.update   
 

Uses of Update in com.hp.hpl.jena.sparql.lang.arq
 

Methods in com.hp.hpl.jena.sparql.lang.arq that return Update
 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 com.hp.hpl.jena.sparql.lang.sparql_11
 

Methods in com.hp.hpl.jena.sparql.lang.sparql_11 that return Update
 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 com.hp.hpl.jena.sparql.modify
 

Methods in com.hp.hpl.jena.sparql.modify with parameters of type Update
static boolean UpdateCompare.isomorphic(Update req1, Update req2)
           
 void UsingUpdateSink.send(Update update)
           
 void UpdateVisitorSink.send(Update update)
           
 void UpdateRequestSink.send(Update update)
           
 

Uses of Update in com.hp.hpl.jena.sparql.modify.request
 

Subclasses of Update in com.hp.hpl.jena.sparql.modify.request
 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 com.hp.hpl.jena.sparql.modify.request with parameters of type Update
 boolean UpdateModify.equalTo(Update obj, NodeIsomorphismMap isoMap)
           
 boolean UpdateLoad.equalTo(Update obj, NodeIsomorphismMap isoMap)
           
 boolean UpdateDropClear.equalTo(Update obj, NodeIsomorphismMap isoMap)
           
 boolean UpdateDeleteWhere.equalTo(Update obj, NodeIsomorphismMap isoMap)
           
 boolean UpdateData.equalTo(Update obj, NodeIsomorphismMap isoMap)
           
 boolean UpdateCreate.equalTo(Update obj, NodeIsomorphismMap isoMap)
           
 boolean UpdateBinaryOp.equalTo(Update obj, NodeIsomorphismMap isoMap)
           
static void UpdateWriter.output(Update update, IndentedWriter out, SerializationContext sCxt)
           
 void UpdateWriter.update(Update update)
           
 

Method parameters in com.hp.hpl.jena.sparql.modify.request with type arguments of type Update
 void UpdateWriter.update(Iterable<? extends Update> updates)
           
 void UpdateWriter.update(Iterator<? extends Update> updateIter)
           
 

Uses of Update in com.hp.hpl.jena.update
 

Methods in com.hp.hpl.jena.update that return types with arguments of type Update
 List<Update> UpdateRequest.getOperations()
           
 Iterator<Update> UpdateRequest.iterator()
           
 

Methods in com.hp.hpl.jena.update with parameters of type Update
 UpdateRequest UpdateRequest.add(Update update)
           
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore, Binding inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore, QuerySolution inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.createRemote(Update update, String remoteEndpoint)
          Create an UpdateProcessor that sends the update to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemote(Update update, String remoteEndpoint, Context context)
          Create an UpdateProcessor that sends the update to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemote(Update update, String remoteEndpoint, Context context, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemote(Update update, String remoteEndpoint, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update to a remote SPARQL Update service.
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(Update update, String remoteEndpoint)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(Update update, String remoteEndpoint, Context context)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(Update update, String remoteEndpoint, Context context, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
static UpdateProcessor UpdateExecutionFactory.createRemoteForm(Update update, String remoteEndpoint, HttpAuthenticator authenticator)
          Create an UpdateProcessor that sends the update request to a remote SPARQL Update service using an HTML form
abstract  boolean Update.equalTo(Update other, NodeIsomorphismMap isoMap)
          Compare by isomorphism - if the isomorphism map is null, compare nodes by .equals
static void UpdateAction.execute(Update update, Dataset dataset)
          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, Graph graph)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(Update update, GraphStore graphStore)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(Update update, GraphStore graphStore, Binding inputBinding)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(Update update, GraphStore graphStore, QuerySolution inputBinding)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(Update update, Model model)
          Execute a single SPARQL Update operation.
 

Constructors in com.hp.hpl.jena.update with parameters of type Update
UpdateRequest(Update update)
           
 



Licenced under the Apache License, Version 2.0