Uses of Class
io.crums.util.mrkl.Node

Packages that use Node
Package
Description
 
  • Uses of Node in io.crums.util.mrkl

    Methods in io.crums.util.mrkl that return Node
    Modifier and Type
    Method
    Description
    Node.getLeaf(int index)
    Returns the leaf node at the given index.
    Node.getRoot()
    Returns the root of the tree.
    Node.leftChild()
    Returns this node's left child, or null if this node is a leaf.
    Node.parent()
    Returns this node's parent, or null if this node is root.
    Node.rightChild()
    Returns this node's right child, or null if this node is a leaf.
    final Node
    Tree.root()
    Returns the root node of the tree.
    Node.sibling()
    Returns the sibling that makes this node's parent, or null if this node is root.
    Methods in io.crums.util.mrkl that return types with arguments of type Node
    Modifier and Type
    Method
    Description
    Tree.idx()
    Returns the random access index into tree structure.