Class ParentNode<T extends Node>

    • Constructor Summary

      Constructors 
      Constructor Description
      ParentNode()  
      ParentNode​(double score)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<T> children()
      This returns the children of this node in the intent tree.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ParentNode

        public ParentNode()
      • ParentNode

        public ParentNode​(double score)
    • Method Detail

      • children

        public java.util.List<T> children()
        This returns the children of this node in the intent tree. This is never null. Children can be added and removed from this list to modify this node.