public class FileSuffixFilter extends Object implements FileFilter
Modifier and Type | Field and Description |
---|---|
protected boolean |
ignoreCase
Flag to signal that we want to ignore the case.
|
protected String[] |
suffixes
A list of suffixes which files must have to be accepted.
|
Constructor and Description |
---|
FileSuffixFilter(String suffix)
Construct a case sensitive FileSuffixFilter.
|
FileSuffixFilter(String[] suffixes)
Construct a FileSuffixFilter.
|
FileSuffixFilter(String[] suffixes,
boolean ignoreCase)
Construct a FileSuffixFilter.
|
FileSuffixFilter(String suffix,
boolean ignoreCase)
Construct a FileSuffixFilter.
|
protected final String[] suffixes
protected final boolean ignoreCase
public FileSuffixFilter(String[] suffixes, boolean ignoreCase)
suffixes
- A list of suffixes which files mut have to be accepted.ignoreCase
- True if the filter should be case-insensitive.public FileSuffixFilter(String[] suffixes)
suffixes
- A list of suffixes which files mut have to be accepted.public FileSuffixFilter(String suffix, boolean ignoreCase)
suffix
- The suffix which files must have to be accepted.ignoreCase
- True if the filter should be case-insensitive.public FileSuffixFilter(String suffix)
suffix
- The suffix which files must have to be accepted.public boolean accept(File file)
accept
in interface FileFilter
file
- The file to check.Copyright © 2018 JBoss by Red Hat. All rights reserved.