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

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

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

/**
 * @author edward
 * @since 2018-08-06
 */
public class NotLike extends AbstractCondition {

    NotLike(String field, Object value) {
        super(field, value);
    }

    @Override
    protected Operation assignOp() {
        return Operation.NOT_LIKE;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy