implicit class UrlContext extends AnyRef
- Source
- package.scala
- Alphabetic
- By Inheritance
- UrlContext
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new UrlContext(sc: StringContext)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val p: PathExtractor
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.
- macro def q: RequiredQueryStringParameter
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}"
. - macro def q_*: SeqQueryStringParameter
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}"
. - macro def q_?: OptionalQueryStringParameter
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}"
. - macro def q_o: OptionalQueryStringParameter
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. - macro def q_s: SeqQueryStringParameter
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. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()