Package akka.http.scaladsl.server
Class PathMatcher.Matched<L>
- java.lang.Object
-
- akka.http.scaladsl.server.PathMatcher.Matching<L>
-
- akka.http.scaladsl.server.PathMatcher.Matched<L>
-
- All Implemented Interfaces:
java.io.Serializable,scala.Equals,scala.Product
- Enclosing class:
- PathMatcher<L>
public static class PathMatcher.Matched<L> extends PathMatcher.Matching<L> implements scala.Product, java.io.Serializable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> PathMatcher.Matching<R>andThen(scala.Function2<Uri.Path,L,PathMatcher.Matching<R>> f, Tuple<R> evidence$13)Lextractions()<R> PathMatcher.Matching<R>flatMap(scala.Function1<L,scala.Option<R>> f, Tuple<R> evidence$12)<R> PathMatcher.Matched<R>map(scala.Function1<L,R> f, Tuple<R> evidence$11)<R> PathMatcher.Matched<L>orElse(scala.Function0<PathMatcher.Matching<R>> other)Uri.PathpathRest()
-
-
-
Method Detail
-
pathRest
public Uri.Path pathRest()
-
extractions
public L extractions()
-
map
public <R> PathMatcher.Matched<R> map(scala.Function1<L,R> f, Tuple<R> evidence$11)
- Specified by:
mapin classPathMatcher.Matching<L>
-
flatMap
public <R> PathMatcher.Matching<R> flatMap(scala.Function1<L,scala.Option<R>> f, Tuple<R> evidence$12)
- Specified by:
flatMapin classPathMatcher.Matching<L>
-
andThen
public <R> PathMatcher.Matching<R> andThen(scala.Function2<Uri.Path,L,PathMatcher.Matching<R>> f, Tuple<R> evidence$13)
- Specified by:
andThenin classPathMatcher.Matching<L>
-
orElse
public <R> PathMatcher.Matched<L> orElse(scala.Function0<PathMatcher.Matching<R>> other)
-
-