Package akka.http.javadsl.server
Class PathMatcher5<T1,T2,T3,T4,T5>
- java.lang.Object
-
- akka.http.javadsl.server.PathMatcher5<T1,T2,T3,T4,T5>
-
public final class PathMatcher5<T1,T2,T3,T4,T5> extends java.lang.Object
A PathMatcher tries to match a prefix of a given string and returns either a PathMatcher.Matched instance if matched, otherwise PathMatchers.Unmatched.
-
-
Constructor Summary
Constructors Constructor Description PathMatcher5(PathMatcher<scala.Tuple5<T1,T2,T3,T4,T5>> toScala)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PathMatcher5<T1,T2,T3,T4,T5>
concat(PathMatcher0 next)
<N> PathMatcher6<T1,T2,T3,T4,T5,N>
concat(PathMatcher1<N> next)
<N1,N2>
PathMatcher7<T1,T2,T3,T4,T5,N1,N2>concat(PathMatcher2<N1,N2> next)
PathMatcher5<T1,T2,T3,T4,T5>
concat(java.lang.String segment)
PathMatcher0
invert()
PathMatcher5<T1,T2,T3,T4,T5>
orElse(PathMatcher5<T1,T2,T3,T4,T5> alternative)
PathMatcher5<T1,T2,T3,T4,T5>
slash()
PathMatcher5<T1,T2,T3,T4,T5>
slash(PathMatcher0 next)
<N> PathMatcher6<T1,T2,T3,T4,T5,N>
slash(PathMatcher1<N> next)
<N1,N2>
PathMatcher7<T1,T2,T3,T4,T5,N1,N2>slash(PathMatcher2<N1,N2> next)
PathMatcher5<T1,T2,T3,T4,T5>
slash(java.lang.String segment)
PathMatcher<scala.Tuple5<T1,T2,T3,T4,T5>>
toScala()
-
-
-
Method Detail
-
concat
public PathMatcher5<T1,T2,T3,T4,T5> concat(PathMatcher0 next)
-
concat
public <N> PathMatcher6<T1,T2,T3,T4,T5,N> concat(PathMatcher1<N> next)
-
concat
public <N1,N2> PathMatcher7<T1,T2,T3,T4,T5,N1,N2> concat(PathMatcher2<N1,N2> next)
-
invert
public PathMatcher0 invert()
-
orElse
public PathMatcher5<T1,T2,T3,T4,T5> orElse(PathMatcher5<T1,T2,T3,T4,T5> alternative)
-
slash
public PathMatcher5<T1,T2,T3,T4,T5> slash(PathMatcher0 next)
-
slash
public <N> PathMatcher6<T1,T2,T3,T4,T5,N> slash(PathMatcher1<N> next)
-
slash
public <N1,N2> PathMatcher7<T1,T2,T3,T4,T5,N1,N2> slash(PathMatcher2<N1,N2> next)
-
-