List of usage examples for org.hibernate.criterion LikeExpression subclass-usage
From source file com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.util.IlikeEscapeAwareExpression.java
/**
* A criterion representing a case-insensitive "like" expression
* that explicitly specifies escape character '!'.
*
* @author Vladimir Tsukur
*/
From source file com.lushapp.common.orm.hibernate.LikeExpression.java
/**
* QBC like?.
*
* @author honey.zhao@aliyun.com
* @date 2014-10-23 ?10:24:33
*
From source file de.iteratec.hibernate.criterion.IteraplanLikeExpression.java
/** * This class is an extension of the original org.hibernate.criterion.LikeExpression that replaces * the previously used Hibernate-Patch. The class adds an extra constructor which supports a custom * escape character. */ public class IteraplanLikeExpression extends LikeExpression {
From source file org.goobi.production.flow.IlikeExpression.java
public class IlikeExpression extends LikeExpression { private static final long serialVersionUID = -4799319673461424418L; protected IlikeExpression(String propertyName, String value, Character escapeChar) { super(propertyName, escapeString(value), escapeChar, false);