Class OrFileFilter

    • Constructor Detail

      • OrFileFilter

        public OrFileFilter​(IOFileFilter... fileFilters)
        Constructs a new instance for the give filters.
        Parameters:
        fileFilters - filters to OR.
        Since:
        2.9.0
      • OrFileFilter

        public OrFileFilter​(IOFileFilter filter1,
                            IOFileFilter filter2)
        Constructs a new file filter that ORs the result of other filters.
        Parameters:
        filter1 - the first filter, must not be null
        filter2 - the second filter, must not be null
        Throws:
        java.lang.IllegalArgumentException - if either filter is null
      • OrFileFilter

        public OrFileFilter​(java.util.List<IOFileFilter> fileFilters)
        Constructs a new instance of OrFileFilter with the specified filters.
        Parameters:
        fileFilters - the file filters for this filter, copied.
        Since:
        1.1
    • Method Detail

      • accept

        public boolean accept​(java.io.File file)
        Checks to see if the File should be accepted by this filter.
        Specified by:
        accept in interface java.io.FileFilter
        Specified by:
        accept in interface IOFileFilter
        Overrides:
        accept in class AbstractFileFilter
        Parameters:
        file - the File to check
        Returns:
        true if this file matches the test
      • accept

        public boolean accept​(java.io.File file,
                              java.lang.String name)
        Checks to see if the File should be accepted by this filter.
        Specified by:
        accept in interface java.io.FilenameFilter
        Specified by:
        accept in interface IOFileFilter
        Overrides:
        accept in class AbstractFileFilter
        Parameters:
        file - the directory File to check
        name - the file name within the directory to check
        Returns:
        true if this file matches the test
      • accept

        public java.nio.file.FileVisitResult accept​(java.nio.file.Path file,
                                                    java.nio.file.attribute.BasicFileAttributes attributes)
        Checks to see if a Path should be accepted by this filter.
        Specified by:
        accept in interface IOFileFilter
        Specified by:
        accept in interface PathFilter
        Parameters:
        file - the Path to check.
        attributes - the path's basic attributes (may be null).
        Returns:
        true if this path matches the test.
      • addFileFilter

        public void addFileFilter​(IOFileFilter... fileFilters)
        Adds the given file filters.
        Parameters:
        fileFilters - the filters to add.
        Since:
        2.9.0
      • toString

        public java.lang.String toString()
        Provide a String representation of this file filter.
        Overrides:
        toString in class AbstractFileFilter
        Returns:
        a String representation