Package org.joox

Interface Each

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 Each
A callback to be executed for a set of matched elements.
Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    each(Context context)
    The callback method invoked for every matched element.
  • Method Details

    • each

      void each(Context context)
      The callback method invoked for every matched element.
      Parameters:
      context - The context for the current callback call.