Package io.ebean.bean

Interface BeanDiffVisitor


public interface BeanDiffVisitor
Visitor for collecting new/old values for a bean update.
  • Method Summary

    Modifier and Type Method Description
    void visit​(int position, Object newVal, Object oldVal)
    Collect a new/old value pair.
    void visitPop()
    Stop processing an associated bean.
    void visitPush​(int position)
    Start processing an associated bean.
  • Method Details

    • visit

      void visit​(int position, Object newVal, Object oldVal)
      Collect a new/old value pair.
    • visitPush

      void visitPush​(int position)
      Start processing an associated bean.
    • visitPop

      void visitPop()
      Stop processing an associated bean.