Class FilesAndDirectoriesFileFilter

  • All Implemented Interfaces:
    FileFilter

    public class FilesAndDirectoriesFileFilter
    extends java.lang.Object
    implements FileFilter
    A filter which accepts all files and directories.
    • Constructor Summary

      Constructors 
      Constructor Description
      FilesAndDirectoriesFileFilter​(java.lang.String description)
      Create a filter which accepts all files and directories.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(java.io.File f)
      Check if a file is accepted by this filter.
      boolean acceptsDirectories()
      Check if (all) directories are accepted by this filter.
      java.lang.String getDescription()
      Get a short description for this filter.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FilesAndDirectoriesFileFilter

        public FilesAndDirectoriesFileFilter​(java.lang.String description)
        Create a filter which accepts all files and directories.
        Parameters:
        description - A short string describing the filter.
    • Method Detail

      • accept

        public boolean accept​(java.io.File f)
        Description copied from interface: FileFilter
        Check if a file is accepted by this filter.
        Specified by:
        accept in interface FileFilter
        Parameters:
        f - The file to be tested.
        Returns:
        true if the file is accepted by this filter
      • acceptsDirectories

        public boolean acceptsDirectories()
        Description copied from interface: FileFilter
        Check if (all) directories are accepted by this filter.
        Specified by:
        acceptsDirectories in interface FileFilter
        Returns:
        true if directories are accepted by this filter
      • getDescription

        public java.lang.String getDescription()
        Get a short description for this filter.
        Specified by:
        getDescription in interface FileFilter
        Returns:
        a short description of this filter