Class FalseFileFilter

java.lang.Object
org.apache.commons.io.filefilter.FalseFileFilter
All Implemented Interfaces:
FileFilter, FilenameFilter, Serializable, PathMatcher, PathFilter, IOFileFilter

public class FalseFileFilter extends Object implements IOFileFilter, Serializable
A file filter that always returns false.

Deprecating Serialization

Serialization is deprecated and will be removed in 3.0.

Since:
1.0
See Also:
  • Field Details

    • TO_STRING

      private static final String TO_STRING
    • FALSE

      public static final IOFileFilter FALSE
      Singleton instance of false filter.
      Since:
      1.3
    • INSTANCE

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

      private static final long serialVersionUID
      See Also:
  • Constructor Details

    • FalseFileFilter

      protected FalseFileFilter()
      Restrictive constructor.
  • Method Details