Uses of Class
adql.query.ClauseConstraints
-
Packages that use ClauseConstraints Package Description adql.parser adql.query adql.query.constraint adql.query.from adql.translator -
-
Uses of ClauseConstraints in adql.parser
Methods in adql.parser that return ClauseConstraints Modifier and Type Method Description ClauseConstraintsADQLParser. ConditionsList(ClauseConstraints clause)Methods in adql.parser with parameters of type ClauseConstraints Modifier and Type Method Description ClauseConstraintsADQLParser. ConditionsList(ClauseConstraints clause)ADQLJoinADQLQueryFactory. createJoin(ADQLQueryFactory.JoinType type, FromContent leftTable, FromContent rightTable, ClauseConstraints condition) -
Uses of ClauseConstraints in adql.query
Methods in adql.query that return ClauseConstraints Modifier and Type Method Description ClauseConstraintsADQLQuery. getHaving()Gets the HAVING clause of this query.ClauseConstraintsADQLQuery. getWhere()Gets the WHERE clause of this query.Methods in adql.query with parameters of type ClauseConstraints Modifier and Type Method Description voidADQLQuery. setHaving(ClauseConstraints newHaving)Replaces its HAVING clause by the given one.voidADQLQuery. setWhere(ClauseConstraints newWhere)Replaces its WHERE clause by the given one.Constructors in adql.query with parameters of type ClauseConstraints Constructor Description ClauseConstraints(ClauseConstraints toCopy)Builds a ClauseConstraints by copying the given one. -
Uses of ClauseConstraints in adql.query.constraint
Subclasses of ClauseConstraints in adql.query.constraint Modifier and Type Class Description classConstraintsGroupRepresents a parenthesized list of constraints. -
Uses of ClauseConstraints in adql.query.from
Fields in adql.query.from declared as ClauseConstraints Modifier and Type Field Description protected ClauseConstraintsADQLJoin. conditionThe join condition.Methods in adql.query.from that return ClauseConstraints Modifier and Type Method Description ClauseConstraintsADQLJoin. getJoinCondition()Gets the condition of this join (that's to say: the condition which follows the keyword ON).Methods in adql.query.from with parameters of type ClauseConstraints Modifier and Type Method Description voidADQLJoin. setJoinCondition(ClauseConstraints cond)Sets the condition of this join (that's to say: the condition which follows the keyword ON).voidCrossJoin. setJoinCondition(ClauseConstraints cond)Effect-less method: no join condition can be specified to make a CROSS join.Constructors in adql.query.from with parameters of type ClauseConstraints Constructor Description InnerJoin(FromContent left, FromContent right, ClauseConstraints condition)Builds an INNER JOIN between the two given "tables" with the given condition.OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type, ClauseConstraints condition)Builds an OUTER join between the two given "tables" with the given condition.SQLServer_InnerJoin(FromContent left, FromContent right, ClauseConstraints condition)Builds an INNER JOIN between the two given "tables" with the given condition.SQLServer_OuterJoin(FromContent left, FromContent right, OuterJoin.OuterType type, ClauseConstraints condition)Builds an OUTER join between the two given "tables" with the given condition. -
Uses of ClauseConstraints in adql.translator
Methods in adql.translator with parameters of type ClauseConstraints Modifier and Type Method Description java.lang.StringADQLTranslator. translate(ClauseConstraints clause)java.lang.StringJDBCTranslator. translate(ClauseConstraints clause)
-