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

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

Introduction

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

The text is from its open source code.

Constructor

AgeFileFilter(long cutoff)
Constructs a new age file filter for files equal to or older than a certain cutoff
AgeFileFilter(Date cutoffDate)
Constructs a new age file filter for files older than (at or before) a certain cutoff date.
AgeFileFilter(File cutoffReference)
Constructs a new age file filter for files older than (at or before) a certain File (whose last modification time will be used as reference).
AgeFileFilter(long cutoff, boolean acceptOlder)
Constructs a new age file filter for files on any one side of a certain cutoff.
AgeFileFilter(Date cutoffDate, boolean acceptOlder)
Constructs a new age file filter for files on any one side of a certain cutoff date.
AgeFileFilter(File cutoffReference, boolean acceptOlder)
Constructs a new age file filter for files on any one side of a certain File (whose last modification time will be used as reference).