Home | History | Annotate | Download | only in filefilter

Lines Matching refs:cutoff

172      * the specified cutoff time.

174 * @param cutoff the time threshold
178 public static IOFileFilter ageFileFilter(long cutoff) {
179 return new AgeFileFilter(cutoff);
183 * Returns a filter that filters files based on a cutoff time.
185 * @param cutoff the time threshold
190 public static IOFileFilter ageFileFilter(long cutoff, boolean acceptOlder) {
191 return new AgeFileFilter(cutoff, acceptOlder);
196 * the specified cutoff date.
207 * Returns a filter that filters files based on a cutoff date.
232 * Returns a filter that filters files based on a cutoff reference file.