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