public class SuffixFileFilter extends AbstractFileFilter implements java.io.Serializable
For example, to retrieve and print all *.java files
in the current directory:
File dir = new File(".");
String[] files = dir.list( new SuffixFileFilter(".java") );
for (int i = 0; i < files.length; i++) {
System.out.println(files[i]);
}
FileFilterUtils.suffixFileFilter(String),
FileFilterUtils.suffixFileFilter(String, IOCase),
Serialized Form| Modifier and Type | Field and Description |
|---|---|
private IOCase |
caseSensitivity
Whether the comparison is case sensitive.
|
private static long |
serialVersionUID |
private java.lang.String[] |
suffixes
The filename suffixes to search for
|
| Constructor and Description |
|---|
SuffixFileFilter(java.util.List<java.lang.String> suffixes)
Constructs a new Suffix file filter for a list of suffixes.
|
SuffixFileFilter(java.util.List<java.lang.String> suffixes,
IOCase caseSensitivity)
Constructs a new Suffix file filter for a list of suffixes
specifying case-sensitivity.
|
SuffixFileFilter(java.lang.String suffix)
Constructs a new Suffix file filter for a single extension.
|
SuffixFileFilter(java.lang.String[] suffixes)
Constructs a new Suffix file filter for an array of suffixs.
|
SuffixFileFilter(java.lang.String[] suffixes,
IOCase caseSensitivity)
Constructs a new Suffix file filter for an array of suffixs
specifying case-sensitivity.
|
SuffixFileFilter(java.lang.String suffix,
IOCase caseSensitivity)
Constructs a new Suffix file filter for a single extension
specifying case-sensitivity.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(java.io.File file)
Checks to see if the filename ends with the suffix.
|
boolean |
accept(java.io.File file,
java.lang.String name)
Checks to see if the filename ends with the suffix.
|
java.lang.String |
toString()
Provide a String representaion of this file filter.
|
private static final long serialVersionUID
private final java.lang.String[] suffixes
private final IOCase caseSensitivity
public SuffixFileFilter(java.lang.String suffix)
suffix - the suffix to allow, must not be nulljava.lang.IllegalArgumentException - if the suffix is nullpublic SuffixFileFilter(java.lang.String suffix,
IOCase caseSensitivity)
suffix - the suffix to allow, must not be nullcaseSensitivity - how to handle case sensitivity, null means case-sensitivejava.lang.IllegalArgumentException - if the suffix is nullpublic SuffixFileFilter(java.lang.String[] suffixes)
The array is not cloned, so could be changed after constructing the instance. This would be inadvisable however.
suffixes - the suffixes to allow, must not be nulljava.lang.IllegalArgumentException - if the suffix array is nullpublic SuffixFileFilter(java.lang.String[] suffixes,
IOCase caseSensitivity)
suffixes - the suffixes to allow, must not be nullcaseSensitivity - how to handle case sensitivity, null means case-sensitivejava.lang.IllegalArgumentException - if the suffix array is nullpublic SuffixFileFilter(java.util.List<java.lang.String> suffixes)
suffixes - the suffixes to allow, must not be nulljava.lang.IllegalArgumentException - if the suffix list is nulljava.lang.ClassCastException - if the list does not contain Stringspublic SuffixFileFilter(java.util.List<java.lang.String> suffixes,
IOCase caseSensitivity)
suffixes - the suffixes to allow, must not be nullcaseSensitivity - how to handle case sensitivity, null means case-sensitivejava.lang.IllegalArgumentException - if the suffix list is nulljava.lang.ClassCastException - if the list does not contain Stringspublic boolean accept(java.io.File file)
accept in interface java.io.FileFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterfile - the File to checkpublic boolean accept(java.io.File file,
java.lang.String name)
accept in interface java.io.FilenameFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterfile - the File directoryname - the filenamepublic java.lang.String toString()
toString in class AbstractFileFilterCopyright (c) 2002-2016 Apache Software Foundation