org.http4s

Uri

object Uri extends UriFunctions with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Uri
  2. Serializable
  3. Serializable
  4. UriFunctions
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract class AcceptableParamType[T] extends AnyRef

    Defines acceptable types of values as query parameter.

    Defines acceptable types of values as query parameter. This class should ensure that a type has a reasonable String definition. If a class extends from this type toString should be overridden to ensure a valid representation in Uri.

  2. case class Authority(userInfo: Option[UserInfo] = None, host: Host = RegName("localhost"), port: Option[Int] = None) extends Product with Serializable

  3. type Fragment = String

  4. sealed trait Host extends AnyRef

  5. case class IPv4(address: CaseInsensitiveString) extends Host with Product with Serializable

  6. case class IPv6(address: CaseInsensitiveString) extends Host with Product with Serializable

  7. type Path = String

  8. type Query = String

  9. case class RegName(host: CaseInsensitiveString) extends Host with Product with Serializable

  10. type Scheme = CaseInsensitiveString

  11. type UserInfo = String

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. object AcceptableParamType

  5. object IPv4 extends Serializable

  6. object IPv6 extends Serializable

  7. object RegName extends Serializable

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def fromString(s: String): ParseResult[Uri]

  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. object macros

  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. def renderAuthority(a: Authority): String

    Attributes
    protected
  22. def renderHost(h: Host): String

    Attributes
    protected
  23. def renderParamsAndFragment(p: Option[Query], f: Option[Fragment]): String

    Attributes
    protected
  24. def renderQueryString(params: Map[String, Seq[String]]): Option[String]

    Attributes
    protected
  25. def renderScheme(s: Scheme): String

    Attributes
    protected
  26. def renderSchemeAndAuthority(s: Scheme, a: Authority): String

    Attributes
    protected
  27. def renderUri(uri: Uri): String

    Attributes
    protected
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. macro def uri(s: String): Uri

    Literal syntax for URIs.

    Literal syntax for URIs. Invalid or non-literal arguments are rejected at compile time.

    Definition Classes
    UriFunctions
  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( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from UriFunctions

Inherited from AnyRef

Inherited from Any

Ungrouped