Uses of Interface
com.exonum.binding.common.proofs.list.ListProofNode
| Package | Description |
|---|---|
| com.exonum.binding.common.proofs.list |
-
Uses of ListProofNode in com.exonum.binding.common.proofs.list
Classes in com.exonum.binding.common.proofs.list that implement ListProofNode Modifier and Type Class Description classListProofBranchRepresents a branch node of aListProofNode.classListProofElementRepresents an element of a proof list: a leaf node in a list proof tree.classListProofHashNodeRepresents a hash of a Merkle sub-tree: a leaf node in proof trees.classListProofOfAbsenceRepresents the proof of absence of a requested element or a range of elements by providing Merkle root hash of a corresponding proof list.Methods in com.exonum.binding.common.proofs.list that return ListProofNode Modifier and Type Method Description ListProofNodeListProofBranch. getLeft()Returns the left child in the proof tree.ListProofNodeUncheckedListProof. getListProofRootNode()Returns the root node of the corresponding proof tree of this UncheckedListProof.ListProofNodeUncheckedListProofAdapter. getListProofRootNode()Methods in com.exonum.binding.common.proofs.list that return types with arguments of type ListProofNode Modifier and Type Method Description Optional<ListProofNode>ListProofBranch. getRight()Returns the right child in the proof tree.Constructors in com.exonum.binding.common.proofs.list with parameters of type ListProofNode Constructor Description ListProofBranch(ListProofNode left, ListProofNode right)UncheckedListProofAdapter(ListProofNode rootNode, long length)Creates UncheckedListProofAdapter for convenient usage of ListProof interfaces.