Package akka.http.javadsl.server
Class PathMatcher0
- java.lang.Object
-
- akka.http.javadsl.server.PathMatcher0
-
public final class PathMatcher0 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 PathMatcher0(PathMatcher<scala.runtime.BoxedUnit> toScala)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PathMatcher0
concat(PathMatcher0 next)
<T> PathMatcher1<T>
concat(PathMatcher1<T> next)
<T1,T2>
PathMatcher2<T1,T2>concat(PathMatcher2<T1,T2> next)
PathMatcher0
concat(java.lang.String segment)
PathMatcher0
invert()
PathMatcher0
orElse(PathMatcher0 alternative)
PathMatcher0
orElse(java.lang.String segment)
PathMatcher0
repeat(int min, int max)
PathMatcher0
repeat(int min, int max, PathMatcher0 separator)
PathMatcher0
slash()
PathMatcher0
slash(PathMatcher0 next)
<T> PathMatcher1<T>
slash(PathMatcher1<T> next)
<T1,T2>
PathMatcher2<T1,T2>slash(PathMatcher2<T1,T2> next)
PathMatcher0
slash(java.lang.String segment)
PathMatcher<scala.runtime.BoxedUnit>
toScala()
-
-
-
Constructor Detail
-
PathMatcher0
public PathMatcher0(PathMatcher<scala.runtime.BoxedUnit> toScala)
-
-
Method Detail
-
concat
public PathMatcher0 concat(java.lang.String segment)
-
concat
public PathMatcher0 concat(PathMatcher0 next)
-
concat
public <T> PathMatcher1<T> concat(PathMatcher1<T> next)
-
concat
public <T1,T2> PathMatcher2<T1,T2> concat(PathMatcher2<T1,T2> next)
-
invert
public PathMatcher0 invert()
-
orElse
public PathMatcher0 orElse(java.lang.String segment)
-
orElse
public PathMatcher0 orElse(PathMatcher0 alternative)
-
repeat
public PathMatcher0 repeat(int min, int max)
-
repeat
public PathMatcher0 repeat(int min, int max, PathMatcher0 separator)
-
slash
public PathMatcher0 slash()
-
slash
public PathMatcher0 slash(java.lang.String segment)
-
slash
public PathMatcher0 slash(PathMatcher0 next)
-
slash
public <T> PathMatcher1<T> slash(PathMatcher1<T> next)
-
slash
public <T1,T2> PathMatcher2<T1,T2> slash(PathMatcher2<T1,T2> next)
-
toScala
public PathMatcher<scala.runtime.BoxedUnit> toScala()
-
-