All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.fastsql.interpreter.expr.BooleanExpr Maven / Gradle / Ivy

There is a newer version: 2.0.0_preview_973
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy