Interface IOFileFilter

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean accept​(java.io.File file)
      Checks to see if the File should be accepted by this filter.
      boolean accept​(java.io.File dir, java.lang.String name)
      Checks to see if the File should be accepted by this filter.
    • Method Detail

      • accept

        boolean accept​(java.io.File file)
        Checks to see if the File should be accepted by this filter.

        Defined in FileFilter.

        Specified by:
        accept in interface java.io.FileFilter
        Parameters:
        file - the File to check
        Returns:
        true if this file matches the test
      • accept

        boolean accept​(java.io.File dir,
                       java.lang.String name)
        Checks to see if the File should be accepted by this filter.

        Defined in FilenameFilter.

        Specified by:
        accept in interface java.io.FilenameFilter
        Parameters:
        dir - the directory File to check
        name - the filename within the directory to check
        Returns:
        true if this file matches the test