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

com.jn.sqlhelper.dialect.expression.SQLExpressions Maven / Gradle / Ivy

package com.jn.sqlhelper.dialect.expression;

public class SQLExpressions {
    private SQLExpressions() {
    }

    public static boolean isPlaceholderExpression(SQLExpression expression) {
        if (expression == null) {
            return false;
        }
        if (expression instanceof PlaceholderExpression) {
            return true;
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy