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

com.jpattern.orm.query.clause.where.ILikeExpressionElement Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.query.clause.where;

/**
 * 
 * @author Francesco Cina
 *
 * 19/giu/2011
 */
public class ILikeExpressionElement extends AExpressionElement {

	/**
	 * 
	 */
	

	public ILikeExpressionElement(String property, Object value) {
		setProperty(property);
		setValue(value);
		setPropertyDecorator(new LowerCasePropertyDecorator());
		setValueDecorator(new LowerCasePropertyDecorator());
	}

	@Override
	public String getExpressionElementKey() {
		return "like";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy