|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FromClause | |
---|---|
com.metamatrix.query.sql.lang |
Uses of FromClause in com.metamatrix.query.sql.lang |
---|
Subclasses of FromClause in com.metamatrix.query.sql.lang | |
---|---|
class |
JoinPredicate
Represents a subpart of the FROM clause specifying a join within the FROM. |
class |
SubqueryFromClause
A FROM subpart that represents a subquery. |
class |
UnaryFromClause
A FROM subpart that represents a single group. |
Methods in com.metamatrix.query.sql.lang that return FromClause | |
---|---|
FromClause |
JoinPredicate.getLeftClause()
Get left clause |
FromClause |
JoinPredicate.getRightClause()
Get right clause |
Methods in com.metamatrix.query.sql.lang with parameters of type FromClause | |
---|---|
void |
From.addClause(FromClause clause)
Add a clause to the FROM |
void |
JoinPredicate.setLeftClause(FromClause predicate)
Set left clause |
void |
JoinPredicate.setRightClause(FromClause predicate)
Set right clause |
Constructors in com.metamatrix.query.sql.lang with parameters of type FromClause | |
---|---|
JoinPredicate(FromClause leftClause,
FromClause rightClause,
JoinType type)
Construct a JoinPredicate between two clauses of the specified type. |
|
JoinPredicate(FromClause leftClause,
FromClause rightClause,
JoinType type,
Criteria criteria)
Construct a JoinPredicate between two clauses of the specified type. |
|
JoinPredicate(FromClause leftClause,
FromClause rightClause,
JoinType type,
java.util.List criteria)
Construct a JoinPredicate between two clauses of the specified type. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |