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]);
}
FileFilterUtils.nameFileFilter(String),
FileFilterUtils.nameFileFilter(String, IOCase),
Serialized FormEMPTY_STRING_ARRAY| Constructor and Description |
|---|
NameFileFilter(List<String> names)
Constructs a new case-sensitive name file filter for a list of names.
|
NameFileFilter(List<String> names,
IOCase caseSensitivity)
Constructs a new name file filter for a list of names specifying case-sensitivity.
|
NameFileFilter(String... names)
Constructs a new case-sensitive name file filter for an array of names.
|
NameFileFilter(String name)
Constructs a new case-sensitive name file filter for a single name.
|
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 file name matches.
|
boolean |
accept(File dir,
String name)
Checks to see if the file name matches.
|
String |
toString()
Provide a String representation 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)
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<String> 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<String> 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 FileFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterfile - the File to checkpublic boolean accept(File dir, String name)
accept in interface FilenameFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterdir - the File directory (ignored)name - the file namepublic String toString()
toString in class AbstractFileFilterCopyright © 2002–2020 The Apache Software Foundation. All rights reserved.