Interface TreeNode

    • Method Detail

      • getTreeChildren

        java.util.Collection<? extends TreeNode> getTreeChildren()
        Returns a Collection of TreeNode children of the current node
        Returns:
        Collection of TreeNode
      • getId

        java.lang.String getId()
        Returns id of the current node
        Returns:
        String Node id
      • getTreeParent

        TreeNode getTreeParent()
        Returns parent of the current node
        Returns:
        TreeNode parent Node
      • isTreeLeaf

        boolean isTreeLeaf()
        Returns boolean true if the TreeNode is a leaf
        Returns:
        boolean indicating if node is leaf or node
      • isTreeNode

        boolean isTreeNode()
        Returns boolean true if the TreeNode is a node
        Returns:
        boolean indicating if node is leaf or node
      • getTreeRoot

        TreeNode getTreeRoot()
        Returns the root of the current node
        Returns:
        TreeNode root Node