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

org.rdlinux.ezmybatis.enumeration.Operator Maven / Gradle / Ivy

package org.rdlinux.ezmybatis.enumeration;

public enum Operator {
    eq("="),
    ne("!="),
    gt(">"),
    ge(">="),
    lt("<"),
    le("<="),
    isNull("IS NULL"),
    isNotNull("IS NOT NULL"),
    in("IN"),
    notIn("NOT IN"),
    like("LIKE"),
    unlike("NOT LIKE"),
    between("BETWEEN"),
    notBetween("NOT BETWEEN"),
    regexp("REGEXP");
    private String operator;

    Operator(String operator) {
        this.operator = operator;
    }

    public String getOperator() {
        return this.operator;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy