类 BetweenOperatorNode
- java.lang.Object
-
- antlr.BaseAST
-
- antlr.CommonAST
-
- org.hibernate.hql.internal.ast.tree.Node
-
- org.hibernate.hql.internal.ast.tree.SqlNode
-
- org.hibernate.hql.internal.ast.tree.BetweenOperatorNode
-
- 所有已实现的接口:
antlr.collections.AST,Serializable,OperatorNode
public class BetweenOperatorNode extends SqlNode implements OperatorNode
Contract for nodes representing logical BETWEEN (ternary) operators.- 作者:
- Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 BetweenOperatorNode()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 TypegetDataType()Retrieves the data type for the overall operator expression.NodegetFixtureOperand()NodegetHighOperand()NodegetLowOperand()voidinitialize()Called by the tree walker during hql-sql semantic analysis after the operator sub-tree is completely built.-
从类继承的方法 org.hibernate.hql.internal.ast.tree.SqlNode
getOriginalText, setDataType, setText
-
从类继承的方法 org.hibernate.hql.internal.ast.tree.Node
getColumn, getFilename, getLine, getRenderText, getTextLength, initialize, initialize
-
从类继承的方法 antlr.BaseAST
addChild, decode, encode, equals, equalsList, equalsListPartial, equalsTree, equalsTreePartial, findAll, findAllPartial, getFirstChild, getNextSibling, getNumberOfChildren, getTokenNames, removeChildren, setFirstChild, setNextSibling, setVerboseStringConversion, toString, toStringList, toStringTree, xmlSerialize, xmlSerializeNode, xmlSerializeRootClose, xmlSerializeRootOpen
-
-
-
-
方法详细资料
-
initialize
public void initialize() throws antlr.SemanticException从接口复制的说明:OperatorNodeCalled by the tree walker during hql-sql semantic analysis after the operator sub-tree is completely built.- 指定者:
initialize在接口中OperatorNode- 抛出:
antlr.SemanticException
-
getDataType
public Type getDataType()
从接口复制的说明:OperatorNodeRetrieves the data type for the overall operator expression.- 指定者:
getDataType在接口中OperatorNode- 覆盖:
getDataType在类中SqlNode- 返回:
- The expression's data type.
-
getFixtureOperand
public Node getFixtureOperand()
-
getLowOperand
public Node getLowOperand()
-
getHighOperand
public Node getHighOperand()
-
-