类 PathPattern.PathRemainingMatchInfo

java.lang.Object
cn.taketoday.web.util.pattern.PathPattern.PathRemainingMatchInfo
封闭类:
PathPattern

public static class PathPattern.PathRemainingMatchInfo extends Object
Holder for the result of a match on the start of a pattern. Provides access to the remaining path not matched to the pattern as well as any variables bound in that first part that was matched.
  • 字段详细资料

  • 构造器详细资料

  • 方法详细资料

    • getPathMatched

      public PathContainer getPathMatched()
      Return the part of a path that was matched by a pattern.
      从以下版本开始:
      4.0
    • getPathRemaining

      public PathContainer getPathRemaining()
      Return the part of a path that was not matched by a pattern.
    • getUriVariables

      public Map<String,String> getUriVariables()
      Return variables that were bound in the part of the path that was successfully matched or an empty map.
    • getMatrixVariables

      public Map<String,cn.taketoday.util.MultiValueMap<String,String>> getMatrixVariables()
      Return the path parameters for each bound variable.