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