-
- All Superinterfaces:
PathMatcher.Result
- Enclosing interface:
- PathMatcher
public static interface PathMatcher.PrefixResult extends PathMatcher.Result
The result of prefix matching aPathMatcher
to a given URI path.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
remainingPart()
In case of prefix match this returns the reminder that wasn't matched.-
Methods inherited from interface io.helidon.webserver.PathMatcher.Result
matches, param, params
-
-
-
-
Method Detail
-
remainingPart
String remainingPart()
In case of prefix match this returns the reminder that wasn't matched. Remaining must be relative URI to matched part. It means that it must be completed from whole path segments. Result must be also decoded and normalized.- Returns:
- the reminder in case of a successful prefix match.
-
-