Uses of Interface
org.topbraid.spin.model.update.Update

Packages that use Update
org.topbraid.spin.arq Converter from Jena ARQ to the SPIN object model. 
org.topbraid.spin.model The SPIN object model (subclasses of Jena Resource). 
org.topbraid.spin.model.update The SPIN object model for SPARQL UPDATE language (subclasses of Jena Resource). 
org.topbraid.spin.util Various utilities that don't fit elsewhere. 
 

Uses of Update in org.topbraid.spin.arq
 

Methods in org.topbraid.spin.arq that return Update
 Update ARQ2SPIN.createUpdate(com.hp.hpl.jena.sparql.modify.op.Update arq, java.lang.String uri)
           
static Update ARQ2SPIN.parseUpdate(java.lang.String str, Model model)
          Parses a given partial UPDATE string and converts it into a SPIN structure inside a given Model.
 

Uses of Update in org.topbraid.spin.model
 

Methods in org.topbraid.spin.model that return Update
static Update SPINFactory.asUpdate(Resource resource)
          Checks if a given Resource is a subclass of sp:Update and casts it into the most specific Java class possible.
 

Uses of Update in org.topbraid.spin.model.update
 

Subinterfaces of Update in org.topbraid.spin.model.update
 interface Delete
          An Update representing a DELETE FROM.
 interface Insert
          An Update representing an INSERT INTO.
 interface Modify
          An Update representing a MODIFY.
 

Uses of Update in org.topbraid.spin.util
 

Methods in org.topbraid.spin.util with parameters of type Update
static UpdateRequest SPINUtil.createUpdateRequest(Update spinUpdate)