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

com.jpattern.orm.query.clause.from.FullOuterJoinElement Maven / Gradle / Ivy

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

import com.jpattern.orm.mapper.IOrmClassToolMap;

/**
 * 
 * @author Francesco Cina
 *
 * 27/giu/2011
 */
public class FullOuterJoinElement extends AFromElement {

	private final String onLeftProperty;
	private final String onRigthProperty;
	private boolean onClause = true;

	public FullOuterJoinElement(final IOrmClassToolMap ormClassToolMap, final Class joinClass, final Integer nameSolverClassId) {
		this(ormClassToolMap, joinClass, nameSolverClassId, "", "");
		this.onClause = false;
	}

	public FullOuterJoinElement(final IOrmClassToolMap ormClassToolMap, final Class joinClass, final Integer nameSolverClassId, final String onLeftProperty, final String onRigthProperty) {
		super(ormClassToolMap, joinClass, nameSolverClassId);
		this.onLeftProperty = onLeftProperty;
		this.onRigthProperty = onRigthProperty;
	}

	@Override
	protected String getJoinName() {
		return "FULL OUTER JOIN ";
	}

	@Override
	protected boolean hasOnClause() {
		return this.onClause ;
	}

	@Override
	protected String onLeftProperty() {
		return this.onLeftProperty;
	}

	@Override
	protected String onRightProperty() {
		return this.onRigthProperty;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy