Interface ObjectSymbolTraverser


public interface ObjectSymbolTraverser
Callback interface for traversing objects. Implement this and call Inspector.traverse() and you will get one callback for each field in an object.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    field(int sym, Inspector inspector)
    Callback function to implement.
  • Method Details

    • field

      void field(int sym, Inspector inspector)
      Callback function to implement.
      Parameters:
      sym - symbol id for the current field.
      inspector - accessor for the current field's value.