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

io.github.jinghui70.rainbow.dbaccess.cnd.Op Maven / Gradle / Ivy

There is a newer version: 5.2.11
Show newest version
package io.github.jinghui70.rainbow.dbaccess.cnd;

public enum Op {

    EQ("="),
    NE("!="),
    GT(">"),
    GE(">="),
    LT("<"),
    LE("<="),
    LIKE(" like "),
    LIKE_LEFT(" like "),
    LIKE_RIGHT(" like "),
    NOT_LIKE(" not like "),
    NOT_LIKE_LEFT(" not like "),
    NOT_LIKE_RIGHT(" not like "),
    IN(" in "),
    NOT_IN(" not in ");

    private final String op;

    public String str() {
        return this.op;
    }

    Op(String op) {
        this.op = op;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy