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 ClauseConstraintsADQLParser.ConditionsList(ClauseConstraints clause) Methods in adql.parser with parameters of type ClauseConstraintsModifier and TypeMethodDescriptionfinal ClauseConstraintsADQLParser.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 ClauseConstraintsADQLQuery.getHaving()Gets the HAVING clause of this query.final ClauseConstraintsADQLQuery.getWhere()Gets the WHERE clause of this query.Methods in adql.query with parameters of type ClauseConstraintsModifier and TypeMethodDescriptionvoidADQLQuery.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 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 TypeClassDescriptionclassRepresents a parenthesized list of constraints. -
Uses of ClauseConstraints in adql.query.from
Fields in adql.query.from declared as ClauseConstraintsModifier and TypeFieldDescriptionprotected ClauseConstraintsADQLJoin.conditionThe join condition.Methods in adql.query.from that return ClauseConstraintsModifier and TypeMethodDescriptionfinal 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 ClauseConstraintsModifier and TypeMethodDescriptionvoidADQLJoin.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 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)