
org.hibernate.hql.ast.tree.BinaryOperatorNode Maven / Gradle / Ivy
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy