String interpolator for extracting parameters out of URL paths.
String interpolator for extracting parameters out of URL paths.
By default, any sub value extracted out by the interpolator will match a path segment, that is, any String not containing a /, and its value will be decoded. If however the sub value is suffixed with *, then it will match any part of a path, and not be decoded. Regular expressions are also supported, by suffixing the sub value with a regular expression in angled brackets, and these are not decoded.
String interpolator for required query parameters out of query strings.
String interpolator for required query parameters out of query strings.
The format must match q"paramName=${param}"
.
String interpolator for multi valued query parameters out of query strings.
String interpolator for multi valued query parameters out of query strings.
The format must match q_*"paramName=${params}"
.
String interpolator for optional query parameters out of query strings.
String interpolator for optional query parameters out of query strings.
The format must match q_?"paramName=${param}"
.
String interpolator for optional query parameters out of query strings.
String interpolator for optional query parameters out of query strings.
The format must match qo"paramName=${param}"
.
The q_?
interpolator is preferred, however Scala 2.10 does not support operator characters in String
interpolator methods.
String interpolator for multi valued query parameters out of query strings.
String interpolator for multi valued query parameters out of query strings.
The format must match qs"paramName=${params}"
.
The q_*
interpolator is preferred, however Scala 2.10 does not support operator characters in String
interpolator methods.