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

cn.icuter.jsql.condition.Combination Maven / Gradle / Ivy

The newest version!
package cn.icuter.jsql.condition;

/**
 * @author edward
 * @since 2018-08-05
 */
public enum Combination {

    AND("and"),
    OR("or");

    private String symbol;
    Combination(String symbol) {
        this.symbol = symbol;
    }

    public String getSymbol() {
        return symbol;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy