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

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

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy