Uses of Class
adql.query.ClauseConstraints
Packages that use ClauseConstraints
-
Uses of ClauseConstraints in adql.parser
Methods in adql.parser that return ClauseConstraintsModifier and TypeMethodDescriptionfinal ClauseConstraints
ADQLParser.ConditionsList
(ClauseConstraints clause) Methods in adql.parser with parameters of type ClauseConstraintsModifier and TypeMethodDescriptionfinal ClauseConstraints
ADQLParser.ConditionsList
(ClauseConstraints clause) ADQLQueryFactory.createJoin
(ADQLQueryFactory.JoinType type, FromContent leftTable, FromContent rightTable, ClauseConstraints condition) -
Uses of ClauseConstraints in adql.query
Methods in adql.query that return ClauseConstraintsModifier and TypeMethodDescriptionfinal ClauseConstraints
ADQLQuery.getHaving()
Gets the HAVING clause of this query.final ClauseConstraints
ADQLQuery.getWhere()
Gets the WHERE clause of this query.Methods in adql.query with parameters of type ClauseConstraintsModifier and TypeMethodDescriptionvoid
ADQLQuery.setHaving
(ClauseConstraints newHaving) Replaces its HAVING clause by the given one.void
ADQLQuery.setWhere
(ClauseConstraints newWhere) Replaces its WHERE clause by the given one.Constructors in adql.query with parameters of type ClauseConstraintsModifierConstructorDescriptionClauseConstraints
(ClauseConstraints toCopy) Builds a ClauseConstraints by copying the given one. -
Uses of ClauseConstraints in adql.query.constraint
Subclasses of ClauseConstraints in adql.query.constraintModifier and TypeClassDescriptionclass
Represents a parenthesized list of constraints. -
Uses of ClauseConstraints in adql.query.from
Fields in adql.query.from declared as ClauseConstraintsModifier and TypeFieldDescriptionprotected ClauseConstraints
ADQLJoin.condition
The join condition.Methods in adql.query.from that return ClauseConstraintsModifier and TypeMethodDescriptionfinal ClauseConstraints
ADQLJoin.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 ClauseConstraintsModifier and TypeMethodDescriptionvoid
ADQLJoin.setJoinCondition
(ClauseConstraints cond) Sets the condition of this join (that's to say: the condition which follows the keyword ON).void
CrossJoin.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 ClauseConstraintsModifierConstructorDescriptionInnerJoin
(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 ClauseConstraintsModifier and TypeMethodDescriptionADQLTranslator.translate
(ClauseConstraints clause) JDBCTranslator.translate
(ClauseConstraints clause)