Package org.hibernate.sql.ordering.antlr
Class NodeSupport
- java.lang.Object
-
- antlr.BaseAST
-
- antlr.CommonAST
-
- org.hibernate.sql.ordering.antlr.NodeSupport
-
- All Implemented Interfaces:
antlr.collections.AST
,java.io.Serializable
,Node
- Direct Known Subclasses:
CollationSpecification
,OrderByFragment
,OrderingSpecification
,SortKey
,SortSpecification
public class NodeSupport extends antlr.CommonAST implements Node
Basic implementation of aNode
briding to the AntlrCommonAST
hierarchy.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NodeSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDebugText()
Get a string representation of this node usable for debug logging or similar.java.lang.String
getRenderableText()
Build the node's representation for use in the resulting rendering.-
Methods inherited from class antlr.CommonAST
getText, getType, initialize, initialize, initialize, setText, setType
-
Methods inherited from class antlr.BaseAST
addChild, decode, encode, equals, equalsList, equalsListPartial, equalsTree, equalsTreePartial, findAll, findAllPartial, getColumn, getFirstChild, getLine, getNextSibling, getNumberOfChildren, getTokenNames, removeChildren, setFirstChild, setNextSibling, setVerboseStringConversion, toString, toStringList, toStringTree, xmlSerialize, xmlSerializeNode, xmlSerializeRootClose, xmlSerializeRootOpen
-
-
-
-
Method Detail
-
getDebugText
public java.lang.String getDebugText()
Description copied from interface:Node
Get a string representation of this node usable for debug logging or similar.- Specified by:
getDebugText
in interfaceNode
- Returns:
- The node's debugging text.
-
getRenderableText
public java.lang.String getRenderableText()
Description copied from interface:Node
Build the node's representation for use in the resulting rendering.- Specified by:
getRenderableText
in interfaceNode
- Returns:
- The text for use in the translated output.
-
-