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

xin.xihc.jba.sql.clause.RLike Maven / Gradle / Ivy

There is a newer version: 1.8.12
Show newest version
package xin.xihc.jba.sql.clause;

/**
 * 正则表达式Rlike条件句
 *
 * @author Leo.Xi
 * @date 2020/3/5
 * @since 1.0
 **/
public class RLike extends Clause {

    public RLike(String columnName, String value) {
        super(columnName, value);
    }

    @Override
    public String value() {
        return this.value;
    }

    @Override
    public String operation() {
        return " RLIKE ";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy