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

com.jpattern.orm.query.where.EqPropertiesExpressionElement Maven / Gradle / Ivy

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

/**
 * 
 * @author Francesco Cina
 *
 * 19/giu/2011
 */
public class EqPropertiesExpressionElement extends APropertiesExpressionElement {

	/**
	 * 
	 */
	

	public EqPropertiesExpressionElement(String firstProperty, String secondProperty) {
		super(firstProperty, secondProperty);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy