
org.sqlproc.engine.impl.SqlMetaLogOperand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-processor Show documentation
Show all versions of sql-processor Show documentation
SQL Processor - Data Driven Queries
package org.sqlproc.engine.impl;
/**
* The ancestor of META SQL sub-elements, which can be used in {@link org.sqlproc.engine.impl.SqlMetaLogExpr}.
*
* In fact it's a marker interface for
*
* - {@link org.sqlproc.engine.impl.SqlMetaIdent}
*
- {@link org.sqlproc.engine.impl.SqlMetaConst}
*
*
* @author Vladimir Hudec
*/
interface SqlMetaLogOperand {
/**
* The main contract to evaluate a logical value of META SQL sub-elements.
*
* @param ctx
* the context for a dynamic ANSI SQL Query generation
* @return a logical value
*/
boolean processExpression(SqlProcessContext ctx);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy