Package rife.tools

Interface DirAction

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 DirAction
Functional interface that captures an action to execute on a DirBuilder instance.
Since:
1.5.19
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Executes the action on the specified DirBuilder instance.
  • Method Details

    • use

      void use(DirBuilder d) throws IOException
      Executes the action on the specified DirBuilder instance.
      Parameters:
      d - The DirBuilder instance on which to execute the action.
      Throws:
      IOException - if an exception occurs while executing the action.
      Since:
      1.5.19