类 PathPattern.PathRemainingMatchInfo
java.lang.Object
cn.taketoday.web.util.pattern.PathPattern.PathRemainingMatchInfo
- 封闭类:
- PathPattern
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.
-
字段概要
字段 -
构造器概要
构造器构造器说明PathRemainingMatchInfo(PathContainer pathMatched, PathContainer pathRemaining) PathRemainingMatchInfo(PathContainer pathMatched, PathContainer pathRemaining, PathMatchInfo pathMatchInfo) -
方法概要
修饰符和类型方法说明Return the path parameters for each bound variable.Return the part of a path that was matched by a pattern.Return the part of a path that was not matched by a pattern.Return variables that were bound in the part of the path that was successfully matched or an empty map.
-
字段详细资料
-
pathMatched
-
pathRemaining
-
pathMatchInfo
-
-
构造器详细资料
-
PathRemainingMatchInfo
PathRemainingMatchInfo(PathContainer pathMatched, PathContainer pathRemaining) -
PathRemainingMatchInfo
PathRemainingMatchInfo(PathContainer pathMatched, PathContainer pathRemaining, PathMatchInfo pathMatchInfo)
-
-
方法详细资料
-
getPathMatched
Return the part of a path that was matched by a pattern.- 从以下版本开始:
- 4.0
-
getPathRemaining
Return the part of a path that was not matched by a pattern. -
getUriVariables
Return variables that were bound in the part of the path that was successfully matched or an empty map. -
getMatrixVariables
Return the path parameters for each bound variable.
-