Package org.apache.wayang.core.util
Class ExplainTreeNode
- java.lang.Object
-
- org.apache.wayang.core.util.ExplainTreeNode
-
- All Implemented Interfaces:
JsonSerializable
public class ExplainTreeNode extends java.lang.Object implements JsonSerializable
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.wayang.core.util.JsonSerializable
JsonSerializable.Serializer<T extends JsonSerializable>
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<ExplainTreeNode>
children
Operator
operator
-
Fields inherited from interface org.apache.wayang.core.util.JsonSerializable
uncheckedSerializer
-
-
Constructor Summary
Constructors Constructor Description ExplainTreeNode()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExplainTreeNode
fromJson(WayangJsonObj obj)
WayangJsonObj
toJson()
Convert this instance to aWayangJsonObj
.
-
-
-
Field Detail
-
operator
public Operator operator
-
children
public java.util.List<ExplainTreeNode> children
-
-
Method Detail
-
toJson
public WayangJsonObj toJson()
Description copied from interface:JsonSerializable
Convert this instance to aWayangJsonObj
.- Specified by:
toJson
in interfaceJsonSerializable
- Returns:
- the
WayangJsonObj
-
fromJson
public static ExplainTreeNode fromJson(WayangJsonObj obj)
-
-