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

net.dongliu.dbutils.builder.Constant Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package net.dongliu.dbutils.builder;

import java.util.HashSet;
import java.util.Set;

/**
 * @author Liu Dong
 */
class Constant {
    static final Set andORSet;
    static  {
        andORSet = new HashSet<>();
        andORSet.add("and");
        andORSet.add("AND");
        andORSet.add("or");
        andORSet.add("OR");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy