| Package | Description | 
|---|---|
| oracle.javatools.db.sql | 
 Contains an API for declaratively parsing SQL queries (SELECT statements). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
protected JoinCondition | 
AbstractSQLQueryBuilder.createJoinCondition(FKConstraint fk,
                   JoinObject join)
Constructs a condition to represent the given FK for the given join. 
 | 
protected FromObjectUsage | 
AbstractSQLQueryBuilder.findColumnInJoin(java.lang.String colName,
                boolean external,
                JoinObject join,
                boolean allowDuplicates,
                SQLFragment creating)
Finds a column in the child FromObjects of a given JoinObject. 
 | 
static java.util.Collection<java.lang.String> | 
SQLFragmentUtils.listCommonColumns(JoinObject join)
List the names of columns common to both the left and right side of the
 given join. 
 | 
OnJoinCondition | 
SQLQueryBuilder.parseOnExpression(java.lang.String expression,
                 JoinObject join)
More specific than parseFromExpression() this method is used to
 specifically parse the ON expression for a JOIN in a FROM clause. 
 |