public class NameFileFilter extends AbstractFileFilter implements Serializable
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]);
}
| Constructor and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(File file)
Checks to see if the filename matches.
|
boolean |
accept(File file,
String name)
Checks to see if the filename matches.
|
String |
toString()
Provide a String representaion of this file filter.
|
public NameFileFilter(String name)
name - the name to allow, must not be nullIllegalArgumentException - if the name is nullpublic 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 nullpublic 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 Stringspublic 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 Stringspublic boolean accept(File file)
accept in interface IOFileFilteraccept in interface FileFilteraccept in class AbstractFileFilterfile - the File to checkpublic boolean accept(File file, String name)
accept in interface IOFileFilteraccept in interface FilenameFilteraccept in class AbstractFileFilterfile - the File directoryname - the filenamepublic String toString()
toString in class AbstractFileFilterCopyright © 2001–2019 KnowGate. All rights reserved.