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

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

Introduction

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

The text is from its open source code.

Constructor

NameFileFilter(String name)
Constructs a new case-sensitive name file filter for a single name.
NameFileFilter(String[] names)
Constructs a new case-sensitive name file filter for an array of names.
NameFileFilter(List names)
Constructs a new case-sensitive name file filter for a list of names.
NameFileFilter(String name, IOCase caseSensitivity)
Construct a new name file filter specifying case-sensitivity.
NameFileFilter(String[] names, IOCase caseSensitivity)
Constructs a new name file filter for an array of names specifying case-sensitivity.
NameFileFilter(List names, IOCase caseSensitivity)
Constructs a new name file filter for a list of names specifying case-sensitivity.