Class InExpression


  • public class InExpression
    extends BooleanExpression
    Expression representing the SQL construct "IN (expr1, expr2, ...)".
    • Constructor Detail

      • InExpression

        public InExpression​(SQLExpression expr,
                            SQLExpression[] exprs)
        Constructor for an IN expression.
        Parameters:
        expr - The expression that is contained.
        exprs - The expressions that it is contained in
      • InExpression

        public InExpression​(SQLExpression expr,
                            List<SQLExpression> exprList)
        Constructor for an IN expression.
        Parameters:
        expr - The expression that is contained.
        exprList - List of expressions that it is contained in
    • Method Detail

      • setStatement

        protected void setStatement()