Package org.apache.openjpa.kernel.exps
Interface Subquery
- 
- All Superinterfaces:
 Serializable,Value
- All Known Implementing Classes:
 SubQ
public interface Subquery extends Value
Query value representing a subquery.- Since:
 - 0.3.2
 - Author:
 - Abe White
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCandidateAlias()Return the candidate alias for this subquery.ObjectgetSelect()StringgetSubqAlias()voidsetQueryExpressions(QueryExpressions query)Set the parsed subquery.voidsetSubqAlias(String subqAlias)- 
Methods inherited from interface org.apache.openjpa.kernel.exps.Value
acceptVisit, getAlias, getMetaData, getName, getPath, getSelectAs, getType, isAggregate, isVariable, isXPath, setAlias, setImplicitType, setMetaData 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getCandidateAlias
String getCandidateAlias()
Return the candidate alias for this subquery. 
- 
setSubqAlias
void setSubqAlias(String subqAlias)
 
- 
getSubqAlias
String getSubqAlias()
 
- 
setQueryExpressions
void setQueryExpressions(QueryExpressions query)
Set the parsed subquery. 
- 
getSelect
Object getSelect()
 
 - 
 
 -