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

org.sqlproc.engine.impl.SqlMetaLogOperand Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
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