object QueryParamDecoder
- Source
- QueryParam.scala
- Alphabetic
- By Inheritance
- QueryParamDecoder
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
-
implicit
val
FunctorQueryParamDecoder: Functor[QueryParamDecoder]
QueryParamDecoder is a covariant functor.
-
implicit
val
PlusEmptyQueryParamDecoder: MonoidK[QueryParamDecoder]
QueryParamDecoder is a MonoidK.
-
def
apply[T](implicit ev: QueryParamDecoder[T]): QueryParamDecoder[T]
summon an implicit QueryParamDecoder
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit lazy val booleanQueryParamDecoder: QueryParamDecoder[Boolean]
- implicit lazy val charQueryParamDecoder: QueryParamDecoder[Char]
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- implicit lazy val doubleQueryParamDecoder: QueryParamDecoder[Double]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
fail[A](sanitized: String, detail: String): QueryParamDecoder[A]
A decoder that always fails.
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- implicit lazy val floatQueryParamDecoder: QueryParamDecoder[Float]
- def fromUnsafeCast[T](cast: (QueryParameterValue) ⇒ T)(typeName: String): QueryParamDecoder[T]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- implicit lazy val intQueryParamDecoder: QueryParamDecoder[Int]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit lazy val longQueryParamDecoder: QueryParamDecoder[Long]
-
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()
- implicit lazy val shortQueryParamDecoder: QueryParamDecoder[Short]
- implicit lazy val stringQueryParamDecoder: QueryParamDecoder[String]
-
def
success[A](a: A): QueryParamDecoder[A]
A decoder that always succeeds.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- implicit lazy val unitQueryParamDecoder: QueryParamDecoder[Unit]
- implicit val uriQueryParamDecoder: QueryParamDecoder[Uri]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
Deprecated Value Members
-
def
decodeBy[U, T](f: (T) ⇒ U)(implicit qpd: QueryParamDecoder[T]): QueryParamDecoder[U]
- Annotations
- @deprecated
- Deprecated
(Since version 0.16) Use QueryParamDecoder[T].map(f)