|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--org.apache.commons.io.filefilter.AbstractFileFilter
|
+--org.apache.commons.io.filefilter.NameFileFilter
Filters filenames for a certain name.
For example, to print all files and directories in the
current directory whose name is Test:
File dir = new File(".");
String[] files = dir.list( new NameFileFilter("Test") );
for ( int i = 0; i < files.length; i++ ) {
System.out.println(files[i]);
}
| Field Summary | |
private IOCase |
caseSensitivity
Whether the comparison is case sensitive. |
private String[] |
names
The filenames to search for |
| Constructor Summary | |
NameFileFilter(List names)
Constructs a new case-sensitive name file filter for a list of names. |
|
NameFileFilter(List names,
IOCase caseSensitivity)
Constructs a new name file filter for a list of names specifying case-sensitivity. |
|
NameFileFilter(String name)
Constructs a new case-sensitive name file filter for a single name. |
|
NameFileFilter(String[] names)
Constructs a new case-sensitive name file filter for an array of names. |
|
NameFileFilter(String[] names,
IOCase caseSensitivity)
Constructs a new name file filter for an array of names specifying case-sensitivity. |
|
NameFileFilter(String name,
IOCase caseSensitivity)
Construct a new name file filter specifying case-sensitivity. |
|
| Method Summary | |
boolean |
accept(File file)
Checks to see if the filename matches. |
boolean |
accept(File file,
String name)
Checks to see if the filename matches. |
| Methods inherited from class java.lang.Object |
|
| Field Detail |
private String[] names
private IOCase caseSensitivity
| Constructor Detail |
public NameFileFilter(String name)
name - the name to allow, must not be nullIllegalArgumentException - if the name is null
public NameFileFilter(String name,
IOCase caseSensitivity)
name - the name to allow, must not be nullcaseSensitivity - how to handle case sensitivity, null means case-sensitiveIllegalArgumentException - if the name is nullpublic NameFileFilter(String[] names)
The array is not cloned, so could be changed after constructing the instance. This would be inadvisable however.
names - the names to allow, must not be nullIllegalArgumentException - if the names array is null
public NameFileFilter(String[] names,
IOCase caseSensitivity)
The array is not cloned, so could be changed after constructing the instance. This would be inadvisable however.
names - the names to allow, must not be nullcaseSensitivity - how to handle case sensitivity, null means case-sensitiveIllegalArgumentException - if the names array is nullpublic NameFileFilter(List names)
names - the names to allow, must not be nullIllegalArgumentException - if the name list is nullClassCastException - if the list does not contain Strings
public NameFileFilter(List names,
IOCase caseSensitivity)
names - the names to allow, must not be nullcaseSensitivity - how to handle case sensitivity, null means case-sensitiveIllegalArgumentException - if the name list is nullClassCastException - if the list does not contain Strings| Method Detail |
public boolean accept(File file)
accept in class AbstractFileFilterfile - the File to check
public boolean accept(File file,
String name)
accept in class AbstractFileFilterfile - the File directoryname - the filename
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||