Packages

object FormDataDecoder

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

Type Members

  1. type FormData = Map[String, Chain[String]]
  2. implicit final class FormDataDecoderSyntax[A] extends AnyVal
  3. type Result[A] = Validated[NonEmptyList[ParseFailure], A]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](f: (FormData) ⇒ Result[A]): FormDataDecoder[A]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def chain[A](key: String)(implicit arg0: FormDataDecoder[A]): FormDataDecoder[Chain[A]]
  7. def chainEither[A](key: String)(implicit A: FormDataDecoder[A]): FormDataDecoder[Either[String, Chain[A]]]
  8. def chainOf[A](key: String)(qd: QueryParamDecoder[A]): FormDataDecoder[Chain[A]]
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def field[A](key: String)(implicit arg0: QueryParamDecoder[A]): FormDataDecoder[A]
  13. def fieldEither[A](key: String)(implicit qpd: QueryParamDecoder[A]): FormDataDecoder[Either[String, A]]
  14. def fieldOptional[A](key: String)(implicit arg0: QueryParamDecoder[A]): FormDataDecoder[Option[A]]
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. implicit val formDataDecoderInstances: Applicative[FormDataDecoder]
  17. implicit def formEntityDecoder[F[_], A](implicit arg0: Concurrent[F], fdd: FormDataDecoder[A]): EntityDecoder[F, A]
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def list[A](key: String)(implicit arg0: FormDataDecoder[A]): FormDataDecoder[List[A]]

    For repeated nested values, assuming that the form parameter name use "[]." as a suffix E.g.

    For repeated nested values, assuming that the form parameter name use "[]." as a suffix E.g. "foos[].bar"

  22. def listOf[A](key: String)(implicit A: QueryParamDecoder[A]): FormDataDecoder[List[A]]

    For repeated primitive values, assuming that the form parameter name use "[]" as a suffix E.g.

    For repeated primitive values, assuming that the form parameter name use "[]" as a suffix E.g. "foos[]"

  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def nested[A](key: String)(implicit arg0: FormDataDecoder[A]): FormDataDecoder[A]

    For nested, this decoder assumes that the form parameter name use "." as deliminator for levels.

    For nested, this decoder assumes that the form parameter name use "." as deliminator for levels. E.g. For a field named "bar" inside a nested class under the field "foo", the parameter name is "foo.bar".

  25. def nestedEither[A](key: String)(implicit fdd: FormDataDecoder[A]): FormDataDecoder[Either[String, A]]
  26. def nestedOptional[A](key: String)(implicit arg0: FormDataDecoder[A]): FormDataDecoder[Option[A]]

    For nested, this decoder assumes that the form parameter name use "." as deliminator for levels.

    For nested, this decoder assumes that the form parameter name use "." as deliminator for levels. E.g. For a field named "bar" inside a nested class under the field "foo", the parameter name is "foo.bar".

  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped