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

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

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

/**
 * @author edward
 * @since 2018-08-05
 */
public class Eq extends AbstractCondition {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy