Uses of Interface
adql.query.constraint.ADQLConstraint
-
Packages that use ADQLConstraint Package Description adql.parser adql.query adql.query.constraint adql.translator -
-
Uses of ADQLConstraint in adql.parser
Methods in adql.parser that return ADQLConstraint Modifier and Type Method Description ADQLConstraintADQLParser. Constraint()ADQLConstraintADQLParser. Predicate()Methods in adql.parser with parameters of type ADQLConstraint Modifier and Type Method Description NotConstraintADQLQueryFactory. createNot(ADQLConstraint constraintToNot) -
Uses of ADQLConstraint in adql.query
Methods in adql.query that return ADQLConstraint Modifier and Type Method Description ADQLConstraintClauseConstraints. remove(int index)ADQLConstraintClauseConstraints. set(int index, ADQLConstraint constraint)ADQLConstraintClauseConstraints. set(int index, java.lang.String logicalSep, ADQLConstraint constraint)Replaces the specified constraint by the given one with the given constraint separator.Methods in adql.query with parameters of type ADQLConstraint Modifier and Type Method Description voidClauseConstraints. add(int index, ADQLConstraint constraint)voidClauseConstraints. add(int index, java.lang.String logicalSep, ADQLConstraint constraint)Adds the given constraint with the given separator at the given position in the constraints list.booleanClauseConstraints. add(ADQLConstraint constraint)booleanClauseConstraints. add(java.lang.String logicalSep, ADQLConstraint constraint)Adds the given constraint with the given separator.ADQLConstraintClauseConstraints. set(int index, ADQLConstraint constraint)ADQLConstraintClauseConstraints. set(int index, java.lang.String logicalSep, ADQLConstraint constraint)Replaces the specified constraint by the given one with the given constraint separator. -
Uses of ADQLConstraint in adql.query.constraint
Classes in adql.query.constraint that implement ADQLConstraint Modifier and Type Class Description classBetweenIt represents the BETWEEN predicate of SQL and ADQL.classComparisonRepresents a comparison (numeric or not) between two operands.classConstraintsGroupRepresents a parenthesized list of constraints.classExistsRepresents the predicate EXISTS of SQL and ADQL.classInIt represents the IN predicate of SQL and ADQL.classIsNullRepresents a comparison between a column to the NULL value.classNotConstraintLets apply the logical operator NOT on any constraint.Methods in adql.query.constraint that return ADQLConstraint Modifier and Type Method Description ADQLConstraintNotConstraint. getConstraint()Gets the constraint on which the NOT operator is applied.Constructors in adql.query.constraint with parameters of type ADQLConstraint Constructor Description NotConstraint(ADQLConstraint constraint)Builds a NotConstraint just with the constraint on which the logical operator NOT must be applied. -
Uses of ADQLConstraint in adql.translator
Methods in adql.translator with parameters of type ADQLConstraint Modifier and Type Method Description java.lang.StringADQLTranslator. translate(ADQLConstraint cons)java.lang.StringJDBCTranslator. translate(ADQLConstraint cons)
-