Interface ObjectTraverser


public interface ObjectTraverser
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(String name, Inspector inspector)
    Callback function to implement.
  • Method Details

    • field

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