接口 Node
-
- 所有已知实现类:
CollationSpecification,NodeSupport,OrderByFragment,OrderingSpecification,SortKey,SortSpecification
public interface NodeGeneral contract for AST nodes.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 StringgetDebugText()Get a string representation of this node usable for debug logging or similar.StringgetRenderableText()Build the node's representation for use in the resulting rendering.StringgetText()Get the intrinsic text of this node.
-
-
-
方法详细资料
-
getText
String getText()
Get the intrinsic text of this node.- 返回:
- The node's text.
-
getDebugText
String getDebugText()
Get a string representation of this node usable for debug logging or similar.- 返回:
- The node's debugging text.
-
getRenderableText
String getRenderableText()
Build the node's representation for use in the resulting rendering.- 返回:
- The text for use in the translated output.
-
-