Class TrueFileFilter

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(java.io.File file)
      Returns true.
      boolean accept​(java.io.File dir, java.lang.String name)
      Returns true.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • TRUE

        public static final IOFileFilter TRUE
        Singleton instance of true filter.
        Since:
        1.3
      • INSTANCE

        public static final IOFileFilter INSTANCE
        Singleton instance of true filter. Please use the identical TrueFileFilter.TRUE constant. The new name is more JDK 1.5 friendly as it doesn't clash with other values when using static imports.
    • Method Detail

      • accept

        public boolean accept​(java.io.File file)
        Returns true.
        Specified by:
        accept in interface java.io.FileFilter
        Specified by:
        accept in interface IOFileFilter
        Parameters:
        file - the file to check (ignored)
        Returns:
        true
      • accept

        public boolean accept​(java.io.File dir,
                              java.lang.String name)
        Returns true.
        Specified by:
        accept in interface java.io.FilenameFilter
        Specified by:
        accept in interface IOFileFilter
        Parameters:
        dir - the directory to check (ignored)
        name - the file name (ignored)
        Returns:
        true