Uses of Interface
com.exonum.binding.common.proofs.list.ListProofNode
-
Packages that use 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 class
ListProofBranch
Represents a branch node of aListProofNode
.class
ListProofElement
Represents an element of a proof list: a leaf node in a list proof tree.class
ListProofHashNode
Represents a hash of a Merkle sub-tree: a leaf node in proof trees.Methods in com.exonum.binding.common.proofs.list that return ListProofNode Modifier and Type Method Description ListProofNode
ListProofBranch. getLeft()
Returns the left child in the proof tree.ListProofNode
UncheckedListProof. getRootProofNode()
Returns raw source proof of this UncheckedListProof.ListProofNode
UncheckedListProofAdapter. getRootProofNode()
Methods in com.exonum.binding.common.proofs.list that return types with arguments of type ListProofNode Modifier and Type Method Description java.util.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 rootProofNode, Serializer<E> serializer)
Creates UncheckedListProofAdapter for convenient usage of ListProof interfaces.
-