- All Superinterfaces:
- UriPath
Abstraction of HTTP path supporting routing parameters.
- 
Method SummaryModifier and TypeMethodDescriptionabsolute()If this instance represents a path relative to some context root then returns absolute requested path otherwise returns this instance.Resolved parameters from path template.Methods inherited from interface io.helidon.common.uri.UriPathmatrixParameters, path, rawPath, rawPathNoParams, segments, validate
- 
Method Details- 
pathParametersParameters pathParameters()Resolved parameters from path template. Path templates do not support multi-valued parameters.Example of path with path parameter: /users/{user}.useris the name of the parameter.- Returns:
- resolved parameters
 
- 
absoluteRoutedPath absolute()If this instance represents a path relative to some context root then returns absolute requested path otherwise returns this instance.The absolute path also contains access to path parameters defined in context matchers. If there is name conflict then value represents latest matcher result. 
 
-