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
    void accept​(ListProofVisitor visitor)
    Applies the visitor to this proof node.
  • Method Details

    • accept

      void accept​(ListProofVisitor visitor)
      Applies the visitor to this proof node.

      Most implementations simply call visitor.visit(this);

      Parameters:
      visitor - a visitor to apply to this node