protobuf4j.orm.sql.expr.LogicalExpr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf4j-sql Show documentation
Show all versions of protobuf4j-sql Show documentation
A Facility Framework to Develop with Google Protobuf
The newest version!
package protobuf4j.orm.sql.expr;
import protobuf4j.orm.sql.IExpression;
import javax.annotation.Nonnull;
import java.util.Collection;
import java.util.Iterator;
/**
* 逻辑表达式:AND OR XOR
*
*
* author: yuanwq
* date: 2018/7/11
*/
public class LogicalExpr extends AbstractBinaryExpr {
protected LogicalExpr(IExpression left, @Nonnull LogicalOp op, IExpression right) {
super(left, op, right);
}
}