- All Implemented Interfaces:
- java.io.FilenameFilter
public class SuffixFilter
extends java.lang.Object
implements java.io.FilenameFilter
A SuffixFilter is a FilenameFilter implementation that filters by suffix. Whether to compare on a case-sensitive or case-insensitive basis is determined from the current FileSystem's separatorChar (for lack of a better solution - the java FileSystem class is not publicly visible and at any rate it does not have a method that explicitly declares case senstivity (the best there is, is a compare() method on File objects that could be used for this purpose).
- Author:
- Erwin Smout