Packages

object QueryParamDecoder

Source
QueryParam.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryParamDecoder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. implicit val FunctorQueryParamDecoder: Functor[QueryParamDecoder]

    QueryParamDecoder is a covariant functor.

  2. implicit val PlusEmptyQueryParamDecoder: MonoidK[QueryParamDecoder]

    QueryParamDecoder is a MonoidK.

  3. def apply[T](implicit ev: QueryParamDecoder[T]): QueryParamDecoder[T]

    summon an implicit QueryParamDecoder

  4. implicit lazy val booleanQueryParamDecoder: QueryParamDecoder[Boolean]
  5. implicit lazy val charQueryParamDecoder: QueryParamDecoder[Char]
  6. def dayOfWeek(formatter: DateTimeFormatter): QueryParamDecoder[DayOfWeek]
  7. implicit lazy val doubleQueryParamDecoder: QueryParamDecoder[Double]
  8. def fail[A](sanitized: String, detail: String): QueryParamDecoder[A]

    A decoder that always fails.

  9. implicit lazy val floatQueryParamDecoder: QueryParamDecoder[Float]
  10. def fromCodec[T](implicit ev: QueryParamCodec[T]): QueryParamDecoder[T]
  11. def fromUnsafeCast[T](cast: (QueryParameterValue) ⇒ T)(typeName: String): QueryParamDecoder[T]
  12. def instant(formatter: DateTimeFormatter): QueryParamDecoder[Instant]
  13. def instantQueryParamDecoder(formatter: DateTimeFormatter): QueryParamDecoder[Instant]
  14. implicit lazy val intQueryParamDecoder: QueryParamDecoder[Int]
  15. def localDate(formatter: DateTimeFormatter): QueryParamDecoder[LocalDate]
  16. def localDateQueryParamDecoder(formatter: DateTimeFormatter): QueryParamDecoder[LocalDate]
  17. def localDateTime(formatter: DateTimeFormatter): QueryParamDecoder[LocalDateTime]
  18. def localTime(formatter: DateTimeFormatter): QueryParamDecoder[LocalTime]
  19. implicit lazy val longQueryParamDecoder: QueryParamDecoder[Long]
  20. def month(formatter: DateTimeFormatter): QueryParamDecoder[Month]
  21. def monthDay(formatter: DateTimeFormatter): QueryParamDecoder[MonthDay]
  22. def offsetDateTime(formatter: DateTimeFormatter): QueryParamDecoder[OffsetDateTime]
  23. def offsetTime(formatter: DateTimeFormatter): QueryParamDecoder[OffsetTime]
  24. implicit lazy val period: QueryParamDecoder[Period]
  25. implicit lazy val shortQueryParamDecoder: QueryParamDecoder[Short]
  26. implicit lazy val stringQueryParamDecoder: QueryParamDecoder[String]
  27. def success[A](a: A): QueryParamDecoder[A]

    A decoder that always succeeds.

  28. implicit lazy val unitQueryParamDecoder: QueryParamDecoder[Unit]
  29. implicit val uriQueryParamDecoder: QueryParamDecoder[Uri]
  30. def year(formatter: DateTimeFormatter): QueryParamDecoder[Year]
  31. def yearMonth(formatter: DateTimeFormatter): QueryParamDecoder[YearMonth]
  32. implicit lazy val zoneId: QueryParamDecoder[ZoneId]
  33. def zoneOffset(formatter: DateTimeFormatter): QueryParamDecoder[ZoneOffset]
  34. def zonedDateTime(formatter: DateTimeFormatter): QueryParamDecoder[ZonedDateTime]
  35. def zonedDateTimeQueryParamDecoder(formatter: DateTimeFormatter): QueryParamDecoder[ZonedDateTime]

Deprecated Value Members

  1. 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)