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

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

Introduction

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

The text is from its open source code.

Constructor

PrefixFileFilter(String prefix)
Constructs a new Prefix file filter for a single prefix.
PrefixFileFilter(String[] prefixes)
Constructs a new Prefix file filter for any of an array of prefixes.
PrefixFileFilter(List prefixes)
Constructs a new Prefix file filter for a list of prefixes.
PrefixFileFilter(String prefix, IOCase caseSensitivity)
Constructs a new Prefix file filter for a single prefix specifying case-sensitivity.
PrefixFileFilter(String[] prefixes, IOCase caseSensitivity)
Constructs a new Prefix file filter for any of an array of prefixes specifying case-sensitivity.
PrefixFileFilter(List prefixes, IOCase caseSensitivity)
Constructs a new Prefix file filter for a list of prefixes specifying case-sensitivity.