Interface PathMatcher.PrefixResult

All Superinterfaces:
PathMatcher.Result
Enclosing interface:
PathMatcher

public static interface PathMatcher.PrefixResult extends PathMatcher.Result
The result of prefix matching a PathMatcher to a given URI path.
  • Method Summary

    Modifier and Type
    Method
    Description
    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 Details

    • 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.