站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 common API Documentation 英文版文档

FilenameSuffixFilter (JBoss/Common API) - JBoss 4.0.1 sp1 common API Documentation 英文版文档


org.jboss.util.file
Class FilenameSuffixFilter

java.lang.Object
  extended byorg.jboss.util.file.FilenameSuffixFilter
All Implemented Interfaces:
FilenameFilter

public class FilenameSuffixFilter
extends Object
implements FilenameFilter

A suffix based filename filter.

Version:
$Revision: 1.1 $
Author:
Jason Dillon

Field Summary
protected  boolean ignoreCase
          Flag to signal that we want to ignore the case.
protected  String suffix
          The suffix which files must have to be accepted.
 
Constructor Summary
FilenameSuffixFilter(String suffix)
          Construct a case sensitive FilenameSuffixFilter.
FilenameSuffixFilter(String suffix, boolean ignoreCase)
          Construct a FilenameSuffixFilter.
 
Method Summary
 boolean accept(File dir, String name)
          Check if a file is acceptible.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

suffix

protected final String suffix
The suffix which files must have to be accepted.


ignoreCase

protected final boolean ignoreCase
Flag to signal that we want to ignore the case.

Constructor Detail

FilenameSuffixFilter

public FilenameSuffixFilter(String suffix,
                            boolean ignoreCase)
Construct a FilenameSuffixFilter.

Parameters:
suffix - The suffix which files must have to be accepted.
ignoreCase - True if the filter should be case-insensitive.

FilenameSuffixFilter

public FilenameSuffixFilter(String suffix)
Construct a case sensitive FilenameSuffixFilter.

Parameters:
suffix - The suffix which files must have to be accepted.
Method Detail

accept

public boolean accept(File dir,
                      String name)
Check if a file is acceptible.

Specified by:
accept in interface FilenameFilter
Parameters:
dir - The directory the file resides in.
name - The name of the file.
Returns:
true if the file is acceptable.


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.