站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.4 正式版 API 英文文档

BinaryOperatorNode (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档


org.hibernate.hql.ast.tree
Interface BinaryOperatorNode

All Superinterfaces:
OperatorNode
All Known Implementing Classes:
BinaryArithmeticOperatorNode, BinaryLogicOperatorNode, InLogicOperatorNode

public interface BinaryOperatorNode
extends OperatorNode

Contract for nodes representing binary operators.

Author:
Steve Ebersole

Method Summary
 Node getLeftHandOperand()
          Retrieves the left-hand operand of the operator.
 Node getRightHandOperand()
          Retrieves the right-hand operand of the operator.
 
Methods inherited from interface org.hibernate.hql.ast.tree.OperatorNode
getDataType, initialize
 

Method Detail

getLeftHandOperand

public Node getLeftHandOperand()
Retrieves the left-hand operand of the operator.

Returns:
The left-hand operand

getRightHandOperand

public Node getRightHandOperand()
Retrieves the right-hand operand of the operator.

Returns:
The right-hand operand