com.jpattern.orm.query.where.IEqExpressionElement Maven / Gradle / Ivy
package com.jpattern.orm.query.where;
/**
*
* @author Francesco Cina
*
* 19/giu/2011
*/
public class IEqExpressionElement extends AExpressionElement {
/**
*
*/
public IEqExpressionElement(String property, Object value) {
setProperty(property);
setValue(value);
setPropertyDecorator(new LowerCasePropertyDecorator());
setValueDecorator(new LowerCasePropertyDecorator());
}
@Override
public String getExpressionElementKey() {
return "=";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy