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

win.doyto.query.core.Constant Maven / Gradle / Ivy

package win.doyto.query.core;

/**
 * Constant
 *
 * @author f0rb on 2019-06-03
 */
@SuppressWarnings("squid:S1214")
interface Constant {
    String IN = "IN";
    String SEPARATOR = ", ";
    String REPLACE_HOLDER = "?";
    String SPACE = " ";
    String EQUAL = " = ";
    String SELECT = "SELECT ";
    String COUNT = "count(*)";
    String FROM = " FROM ";
    String WHERE = " WHERE ";
    String EMPTY = "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy