Interface Visitor

  • All Known Implementing Classes:
    ReflectiveVisitor
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface Visitor
    Since:
    1.0
    Author:
    Michael J. Simons
    • Method Detail

      • enter

        void enter​(Visitable segment)
        Enter a Visitable.
        Parameters:
        segment - the segment to visit.
      • leave

        default void leave​(Visitable segment)
        Leave a Visitable.
        Parameters:
        segment - the visited segment.