object Param
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Param
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class QueryParam[A](key: String)(implicit stringable: Stringable[A]) extends Product with Serializable
- case class QueryParamRep[A](key: String)(implicit stringable: Stringable[A]) extends Product with Serializable
- case class SegmentParam[A]()(implicit stringable: Stringable[A]) extends Product with Serializable
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
- def apply[A](key: String)(implicit arg0: Stringable[A]): QueryParam[A]
Declare a url query parameter that is converted to and from a value
Declare a url query parameter that is converted to and from a value
- key
the query parameter key
"main" :/: Param[Int]("item") // e.g. /main?item=10
Example: - def apply[A](implicit arg0: Stringable[A]): SegmentParam[A]
Declare a path component that is converted to and from a value
Declare a path component that is converted to and from a value
"main" :/: Param[Int] // e.g. /main/10
Example: - 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()
- def repeatable[A](key: String)(implicit arg0: Stringable[A]): QueryParamRep[A]
Declare a repeatable url query parameter that is converted to and from a value
Declare a repeatable url query parameter that is converted to and from a value
- key
the query parameter key
"main" :/: param[Int]("options") // e.g. /main/options=10&options=20
Example: - 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()
- object QueryParam extends ImplicitsForTuple2Path[Option] with ImplicitsForToQueryParameter[[a](Option[a], Unit)] with Serializable
- object QueryParamRep extends ImplicitsForTuple2Path[List] with ImplicitsForToQueryParameter[[a](List[a], Unit)] with Serializable
- object SegmentParam extends ImplicitsForTuple2Path[[a]a] with ImplicitsForToSegment[[α$0$](α$0$, Unit)] with Serializable