Uses of Interface
org.topbraid.spin.model.Command

Packages that use Command
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). 
 

Uses of Command in org.topbraid.spin.model
 

Subinterfaces of Command in org.topbraid.spin.model
 interface Ask
          An ASK Query.
 interface Construct
          A CONSTRUCT Query.
 interface Describe
          A DESCRIBE query.
 interface Query
          Base interface of the various SPARQL query types such as Ask, Construct, Describe and Select.
 interface Select
          A SELECT query.
 interface SolutionModifierQuery
          Shared functions of those Query types that can have solution modifiers.
 

Methods in org.topbraid.spin.model that return Command
static Command SPINFactory.asCommand(Resource resource)
          Attempts to cast a given Resource into the most specific subclass of Command, esp Update or Query.
 Command Module.getBody()
          Gets the body (if defined).
 

Methods in org.topbraid.spin.model with parameters of type Command
static Resource SPINFactory.getTemplateMetaClass(Command command)
          Gets the most appopriate metaclass to wrap a given Command into a Template.
 

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

Subinterfaces of Command 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.
 interface Update
          Base interface of the top-level SPARQL UPDATE commands.