com.alibaba.fastsql.interpreter.expr.BooleanExpr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastsql Show documentation
Show all versions of fastsql Show documentation
An JDBC datasource implementation.
package com.alibaba.fastsql.interpreter.expr;
import com.alibaba.fastsql.interpreter.InterpreterContext;
public abstract class BooleanExpr implements Expr {
@Override
public Class getType() {
return Boolean.class;
}
@Override
public abstract Boolean eval(InterpreterContext context);
}