default FileFilterWithException<E> |
FileFilterWithException.and(FileFilterWithException<? extends E> other) |
Returns a composed FileFilter that represents a short-circuiting logical AND
of this FileFilter and another.
|
static <E extends Exception> FileFilter |
FileFilterWithException.ignored(FileFilterWithException<E> predicate) |
Converts a FileFilterWithException to a lifted FileFilter
returning false in case of exception.
|
static <E extends Exception> FileFilter |
FileFilterWithException.ignored(FileFilterWithException<E> predicate,
boolean defaultValue) |
Converts a FileFilterWithException to a lifted FileFilter
returning a default value in case of exception.
|
static <E extends Exception> FileFilter |
FileFilterWithException.lifted(FileFilterWithException<E> predicate) |
Converts a FileFilterWithException to a lifted FileFilter
returning false in case of exception.
|
static <E extends Exception> FileFilterWithException<E> |
FileFilterWithException.negate(FileFilterWithException<E> predicate) |
Negate a PredicateWithException .
|
default FileFilterWithException<E> |
FileFilterWithException.or(FileFilterWithException<? extends E> other) |
Returns a composed FileFilter that represents a short-circuiting logical OR
of this FileFilter and another.
|
static <E extends Exception> FileFilter |
FileFilterWithException.unchecked(FileFilterWithException<E> predicate) |
Converts a FileFilterWithException to a FileFilter that wraps
exception to RuntimeException .
|
static <E extends Exception> FileFilter |
FileFilterWithException.unchecked(FileFilterWithException<E> predicate,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a FileFilterWithException to a FileFilter that wraps
exception to RuntimeException by using the provided mapping function.
|