Interface PathFinder.Callable

  • Enclosing class:
    PathFinder

    public static interface PathFinder.Callable
    To be implemented by java classes to apply a filter to a path and give feedback whether this filter succeeded. This is analogous to passing a path to as shell command and reading back whether the command succeeded. This interface should be used to define a PathFinder.ExecJavaFilter.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean call​(Path path)
      Applies some filter on the given path and returns whether the called operation succeeded.
    • Method Detail

      • call

        boolean call​(Path path)
        Applies some filter on the given path and returns whether the called operation succeeded.