Interface Finder.Callable

  • Enclosing class:
    Finder

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

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

      • call

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