Interface ListProofNode
- All Known Implementing Classes:
ListProofBranch,ListProofElement,ListProofHashNode,ListProofOfAbsence
public interface ListProofNode
Represents a proof that some elements exist in a ProofList at certain positions.
-
Method Summary
Modifier and Type Method Description voidaccept(ListProofVisitor visitor)Applies the visitor to this proof node.
-
Method Details
-
accept
Applies the visitor to this proof node.Most implementations simply call
visitor.visit(this);- Parameters:
visitor- a visitor to apply to this node
-