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

com.hecloud.runtime.common.enums.Relation Maven / Gradle / Ivy

package com.hecloud.runtime.common.enums;

/**
 * 数据库关系枚举
 *
 * @author LoveinBJ
 */
public enum Relation {
    /**
     * 与
     */
    AND("AND"),
    /**
     * 或
     */
    OR("OR");

    private String relation;

    Relation(String relation) {
        this.relation = relation;
    }

    /**
     * @return the relation
     */
    public String getRelation() {
        return relation;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy