public class SuffixFileFilter extends AbstractFileFilter implements 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]); }
Constructor and Description |
---|
SuffixFileFilter(List suffixes)
Constructs a new Suffix file filter for a list of suffixes.
|
SuffixFileFilter(List suffixes,
IOCase caseSensitivity)
Constructs a new Suffix file filter for a list of suffixes
specifying case-sensitivity.
|
SuffixFileFilter(String suffix)
Constructs a new Suffix file filter for a single extension.
|
SuffixFileFilter(String[] suffixes)
Constructs a new Suffix file filter for an array of suffixs.
|
SuffixFileFilter(String[] suffixes,
IOCase caseSensitivity)
Constructs a new Suffix file filter for an array of suffixs
specifying case-sensitivity.
|
SuffixFileFilter(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(File file)
Checks to see if the filename ends with the suffix.
|
boolean |
accept(File file,
String name)
Checks to see if the filename ends with the suffix.
|
String |
toString()
Provide a String representaion of this file filter.
|
public SuffixFileFilter(String suffix)
suffix
- the suffix to allow, must not be nullIllegalArgumentException
- if the suffix is nullpublic SuffixFileFilter(String suffix, IOCase caseSensitivity)
suffix
- the suffix to allow, must not be nullcaseSensitivity
- how to handle case sensitivity, null means case-sensitiveIllegalArgumentException
- if the suffix is nullpublic SuffixFileFilter(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 nullIllegalArgumentException
- if the suffix array is nullpublic SuffixFileFilter(String[] suffixes, IOCase caseSensitivity)
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 nullcaseSensitivity
- how to handle case sensitivity, null means case-sensitiveIllegalArgumentException
- if the suffix array is nullpublic SuffixFileFilter(List suffixes)
suffixes
- the suffixes to allow, must not be nullIllegalArgumentException
- if the suffix list is nullClassCastException
- if the list does not contain Stringspublic SuffixFileFilter(List suffixes, IOCase caseSensitivity)
suffixes
- the suffixes to allow, must not be nullcaseSensitivity
- how to handle case sensitivity, null means case-sensitiveIllegalArgumentException
- if the suffix list is nullClassCastException
- if the list does not contain Stringspublic boolean accept(File file)
accept
in interface IOFileFilter
accept
in interface FileFilter
accept
in class AbstractFileFilter
file
- the File to checkpublic boolean accept(File file, String name)
accept
in interface IOFileFilter
accept
in interface FilenameFilter
accept
in class AbstractFileFilter
file
- the File directoryname
- the filenamepublic String toString()
toString
in class AbstractFileFilter
Copyright © 2001–2019 KnowGate. All rights reserved.