com.jpattern.orm.query.clause.where.GtPropertiesExpressionElement Maven / Gradle / Ivy
package com.jpattern.orm.query.clause.where;
/**
*
* @author Francesco Cina
*
* 19/giu/2011
*/
public class GtPropertiesExpressionElement extends APropertiesExpressionElement {
/**
*
*/
public GtPropertiesExpressionElement(String firstProperty, String secondProperty) {
super(firstProperty, secondProperty);
}
@Override
public String getExpressionElementKey() {
return ">";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy