org.apache.commons.io.filefilter
Class TrueFileFilter

java.lang.Object
  extended byorg.apache.commons.io.filefilter.TrueFileFilter
All Implemented Interfaces:
FileFilter, FilenameFilter, IOFileFilter

public class TrueFileFilter
extends Object
implements IOFileFilter

A file filter that always returns true.

Since:
Commons IO 1.0
Version:
$Revision: 155419 $ $Date: 2005-02-26 13:02:41 +0000 (Sat, 26 Feb 2005) $

Field Summary
static IOFileFilter INSTANCE
          Singleton instance of true filter
 
Constructor Summary
protected TrueFileFilter()
          Restrictive consructor.
 
Method Summary
 boolean accept(File file)
          Returns true.
 boolean accept(File dir, String name)
          Returns true.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INSTANCE

public static final IOFileFilter INSTANCE
Singleton instance of true filter

Constructor Detail

TrueFileFilter

protected TrueFileFilter()
Restrictive consructor.

Method Detail

accept

public boolean accept(File file)
Returns true.

Specified by:
accept in interface IOFileFilter
Parameters:
file - the file to check
Returns:
true

accept

public boolean accept(File dir,
                      String name)
Returns true.

Specified by:
accept in interface IOFileFilter
Parameters:
dir - the directory to check
name - the filename
Returns:
true


Copyright © 2002-2006 The Apache Software Foundation. All Rights Reserved.