com.jaregu.database.queries.compiling.expr.ExpressionParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of queries Show documentation
Show all versions of queries Show documentation
Java based SQL templating project. Store your queries in *.sql files and build queries for execution. Supports simple expressions and conditional clauses and interface proxying for java-sql bridge.
package com.jaregu.database.queries.compiling.expr;
import java.util.List;
public interface ExpressionParser {
/**
* Fast way to determine if passed expression looks like expression, it is
* possible that expression will contain errors.
*
* @param expression
* @return
*/
boolean isLikeExpression(String expression);
List parse(String expression) throws ExpressionParseException;
static ExpressionParser defaultParser() {
return new ExpressionParserImpl();
}
}