Package akka.http.scaladsl.server
Class PathMatcher.Matching<L>
- java.lang.Object
-
- akka.http.scaladsl.server.PathMatcher.Matching<L>
-
- Direct Known Subclasses:
PathMatcher.Matched
,PathMatcher.Unmatched$
- Enclosing class:
- PathMatcher<L>
public abstract static class PathMatcher.Matching<L> extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> PathMatcher.Matching<R>
andThen(scala.Function2<Uri.Path,L,PathMatcher.Matching<R>> f, Tuple<R> evidence$9)
abstract <R> PathMatcher.Matching<R>
flatMap(scala.Function1<L,scala.Option<R>> f, Tuple<R> evidence$8)
abstract <R> PathMatcher.Matching<R>
map(scala.Function1<L,R> f, Tuple<R> evidence$7)
abstract <R> PathMatcher.Matching<R>
orElse(scala.Function0<PathMatcher.Matching<R>> other)
-
-
-
Method Detail
-
andThen
public abstract <R> PathMatcher.Matching<R> andThen(scala.Function2<Uri.Path,L,PathMatcher.Matching<R>> f, Tuple<R> evidence$9)
-
flatMap
public abstract <R> PathMatcher.Matching<R> flatMap(scala.Function1<L,scala.Option<R>> f, Tuple<R> evidence$8)
-
map
public abstract <R> PathMatcher.Matching<R> map(scala.Function1<L,R> f, Tuple<R> evidence$7)
-
orElse
public abstract <R> PathMatcher.Matching<R> orElse(scala.Function0<PathMatcher.Matching<R>> other)
-
-