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

Packages that use Query
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.util Various utilities that don't fit elsewhere. 
 

Uses of Query in org.topbraid.spin.arq
 

Methods in org.topbraid.spin.arq that return Query
 Query ARQ2SPIN.createQuery(Query arq, java.lang.String uri)
          Constructs a new SPIN Query from a given ARQ query, possibly with a URI.
 

Uses of Query in org.topbraid.spin.model
 

Subinterfaces of Query in org.topbraid.spin.model
 interface Ask
          An ASK Query.
 interface Construct
          A CONSTRUCT Query.
 interface Describe
          A DESCRIBE query.
 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 Query
static Query SPINFactory.asQuery(Resource resource)
          Checks if a given Resource is a SPIN query, and returns an instance of a subclass of Query if so.
 Query Module.getBody()
          Gets the body (if defined).
 Query QueryOrTemplateCall.getQuery()
          If this is a Query, then get it.
 

Constructors in org.topbraid.spin.model with parameters of type Query
QueryOrTemplateCall(Resource cls, Query query)
          Constructs an instance representing a plain Query.
 

Uses of Query in org.topbraid.spin.util
 

Methods in org.topbraid.spin.util that return Query
 Query QueryWrapper.getSPINQuery()
           
 

Methods in org.topbraid.spin.util with parameters of type Query
static boolean SPINUtil.containsThis(Query query)
          Checks whether a given query mentions the variable ?this anywhere.
static java.util.Set<Resource> SPINUtil.getURIResources(Query query)
           
 

Constructors in org.topbraid.spin.util with parameters of type Query
QueryWrapper(Query query, java.lang.String text, Query spinQuery, java.lang.String label)