Java org.apache.commons.io.filefilter RegexFileFilter fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.filefilter RegexFileFilter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.filefilter RegexFileFilter.

The text is from its open source code.

Constructor

RegexFileFilter(String pattern)
Construct a new regular expression filter.
RegexFileFilter(Pattern pattern)
Construct a new regular expression filter for a compiled regular expression
RegexFileFilter(String pattern, IOCase caseSensitivity)
Construct a new regular expression filter with the specified flags case sensitivity.
RegexFileFilter(String pattern, int flags)
Construct a new regular expression filter with the specified flags.

Method

booleanaccept(File file)
Checks to see if the File should be accepted by this filter.