org.hibernate.hql.ast.tree.BinaryOperatorNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
package org.hibernate.hql.ast.tree;
/**
* Contract for nodes representing binary operators.
*
* @author Steve Ebersole
*/
public interface BinaryOperatorNode extends OperatorNode {
/**
* Retrieves the left-hand operand of the operator.
*
* @return The left-hand operand
*/
public Node getLeftHandOperand();
/**
* Retrieves the right-hand operand of the operator.
*
* @return The right-hand operand
*/
public Node getRightHandOperand();
}