Class SimulationTreeNode


  • public final class SimulationTreeNode
    extends java.lang.Object
    Node in a simulated outcome tree.
    • Constructor Detail

      • SimulationTreeNode

        public SimulationTreeNode()
    • Method Detail

      • isLeaf

        public boolean isLeaf()
        Returns:
        true when this node has no children.
      • children

        public java.util.List<SimulationTreeNode> children()
        Returns:
        immutable child list.
      • addChild

        public void addChild​(SimulationTreeNode child)
        Adds a child node to the current tree node.
        Parameters:
        child - child node.