Trait/Object

io.lemonlabs.uri

Url

Related Docs: object Url | package uri

Permalink

sealed trait Url extends Uri

Represents a URL, which will be one of these forms:

Linear Supertypes
Uri, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Url
  2. Uri
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Self <: Url

    Permalink
    Definition Classes
    UrlUri
  2. abstract type SelfWithAuthority <: UrlWithAuthority

    Permalink
  3. abstract type SelfWithScheme <: Url

    Permalink
    Definition Classes
    UrlUri

Abstract Value Members

  1. implicit abstract def config: UriConfig

    Permalink
    Definition Classes
    Uri
  2. abstract def fragment: Option[String]

    Permalink
  3. abstract def hostOption: Option[Host]

    Permalink
  4. abstract def longestSubdomain: Option[String]

    Permalink

    Returns the longest subdomain for this URL's host.

    Returns the longest subdomain for this URL's host. E.g. for http://a.b.c.example.com returns a.b.c.example

    returns

    the longest subdomain for this URL's host

  5. abstract def password: Option[String]

    Permalink
  6. abstract def path: UrlPath

    Permalink
    Definition Classes
    UrlUri
  7. abstract def port: Option[Int]

    Permalink
  8. abstract def publicSuffix: Option[String]

    Permalink

    Returns the longest public suffix for the host in this URI.

    Returns the longest public suffix for the host in this URI. Examples include: com for www.example.com co.uk for www.example.co.uk

    returns

    the longest public suffix for the host in this URI

  9. abstract def publicSuffixes: Vector[String]

    Permalink

    Returns all longest public suffixes for the host in this URI.

    Returns all longest public suffixes for the host in this URI. Examples include: com for www.example.com co.uk and uk for www.example.co.uk

    returns

    all public suffixes for the host in this URI

  10. abstract def query: QueryString

    Permalink
  11. abstract def schemeOption: Option[String]

    Permalink
    Definition Classes
    Uri
  12. abstract def shortestSubdomain: Option[String]

    Permalink

    Returns the shortest subdomain for this URL's host.

    Returns the shortest subdomain for this URL's host. E.g. for http://a.b.c.example.com returns a

    returns

    the shortest subdomain for this URL's host

  13. abstract def subdomain: Option[String]

    Permalink

    Returns the second largest subdomain for this URL's host.

    Returns the second largest subdomain for this URL's host.

    E.g. for http://a.b.c.example.com returns a.b.c

    Note: In the event there is only one subdomain (i.e. the host is the apex domain), this method returns None. E.g. This method will return None for http://example.com.

    returns

    the second largest subdomain for this URL's host

  14. abstract def subdomains: Vector[String]

    Permalink

    Returns all subdomains for this URL's host.

    Returns all subdomains for this URL's host. E.g. for http://a.b.c.example.com returns a, a.b, a.b.c and a.b.c.example

    returns

    all subdomains for this URL's host

  15. abstract def user: Option[String]

    Permalink
  16. abstract def withAuthority(authority: Authority): SelfWithAuthority

    Permalink

    Copies this Url but with the authority set as the given value.

    Copies this Url but with the authority set as the given value.

    authority

    the authority host to set

    returns

    a new Url with the specified authority

  17. abstract def withFragment(fragment: Option[String]): Self

    Permalink

    Copies this Url but with the fragment set as the given value.

    Copies this Url but with the fragment set as the given value.

    fragment

    the new fragment to set

    returns

    a new Url with the specified fragment

  18. abstract def withHost(host: Host): SelfWithAuthority

    Permalink

    Copies this Url but with the host set as the given value.

    Copies this Url but with the host set as the given value.

    host

    the new host to set

    returns

    a new Url with the specified host

  19. abstract def withPath(path: UrlPath): Self

    Permalink

    Copies this Url but with the path set as the given value.

    Copies this Url but with the path set as the given value.

    path

    the new path to set

    returns

    a new Url with the specified path

  20. abstract def withQueryString(query: QueryString): Self

    Permalink

    Copies this Url but with the query set as the given value.

    Copies this Url but with the query set as the given value.

    query

    the new QueryString to set

    returns

    a new Url with the specified query

  21. abstract def withScheme(scheme: String): SelfWithScheme

    Permalink

    Copies this Uri but with the scheme set as the given value.

    Copies this Uri but with the scheme set as the given value.

    scheme

    the new scheme to set

    returns

    a new Uri with the specified scheme

    Definition Classes
    Uri

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addParam(kv: (String, String)): Self

    Permalink

    Adds a new Query String parameter key-value pair.

    Adds a new Query String parameter key-value pair.

    kv

    name-value pair for the query parameter to be added

    returns

    A new Url with the new Query String parameter

  5. def addParam(name: String, value: String): Self

    Permalink

    Adds a new Query String parameter key-value pair.

    Adds a new Query String parameter key-value pair.

    name

    name of the parameter

    value

    value for the parameter

    returns

    A new Url with the new Query String parameter

  6. def addParam(name: String, value: Option[String]): Self

    Permalink

    Adds a new Query String parameter key-value pair.

    Adds a new Query String parameter key-value pair.

    Pairs with values, such as Some("value"), represent query params with values, i.e ?param=value

    By default, pairs without values, i.e None, represent query params without values, i.e ?param Using a UriConfig(renderQuery = ExcludeNones), will cause pairs with None values not to be rendered

    name

    name of the parameter

    value

    value for the parameter

    returns

    A new Url with the new Query String parameter

  7. def addParamOptionValue(kv: (String, Option[String])): Self

    Permalink

    Adds a new Query String parameter key-value pair.

    Adds a new Query String parameter key-value pair.

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value

    By default, pairs without values, such as ("param", None), represent query params without values, i.e ?param Using a UriConfig(renderQuery = ExcludeNones), will cause pairs with None values not to be rendered

    kv

    name-value pair for the query parameter to be added

    returns

    A new Url with the new Query String parameter

  8. def addParams(kvs: Iterable[(String, String)]): Self

    Permalink

    Adds all the specified key-value pairs as parameters to the query

    Adds all the specified key-value pairs as parameters to the query

    kvs

    A list of key-value pairs to add as query parameters

    returns

    A new Url with the new Query String parameters

  9. def addParams(kvs: (String, String)*): Self

    Permalink

    Adds all the specified key-value pairs as parameters to the query

    Adds all the specified key-value pairs as parameters to the query

    kvs

    A list of key-value pairs to add as query parameters

    returns

    A new Url with the new Query String parameters

  10. def addParamsOptionValues(kvs: (String, Option[String])*): Self

    Permalink

    Adds all the specified key-value pairs as parameters to the query

    Adds all the specified key-value pairs as parameters to the query

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value

    By default, pairs without values, such as ("param", None), represent query params without values, i.e ?param Using a UriConfig(renderQuery = ExcludeNones), will cause pairs with None values not to be rendered

    kvs

    A list of key-value pairs to add as query parameters

    returns

    A new Url with the new Query String parameters

  11. def addParamsOptionValues(kvs: Iterable[(String, Option[String])]): Self

    Permalink

    Adds all the specified key-value pairs as parameters to the query

    Adds all the specified key-value pairs as parameters to the query

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value

    By default, pairs without values, such as ("param", None), represent query params without values, i.e ?param Using a UriConfig(renderQuery = ExcludeNones), will cause pairs with None values not to be rendered

    kvs

    A list of key-value pairs to add as query parameters

    returns

    A new Url with the new Query String parameters

  12. def addPathPart(part: String): Self

    Permalink
  13. def addPathParts(parts: String*): Self

    Permalink
  14. def addPathParts(parts: Iterable[String]): Self

    Permalink
  15. def apexDomain: Option[String]

    Permalink

    Returns the apex domain for this URL.

    Returns the apex domain for this URL.

    The apex domain is constructed from the public suffix for this URL's host prepended with the immediately preceding dot segment.

    Examples include: example.com for www.example.com example.co.uk for www.example.co.uk

    returns

    the apex domain for this URL

  16. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  17. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. def collectQuery(f: PartialFunction[(String, Option[String]), (String, Option[String])]): Self

    Permalink

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Parameters not defined in the PartialFunction will be removed.

    f

    A function that returns a new Parameter when applied to each Parameter

  19. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def filterQuery(f: ((String, Option[String])) ⇒ Boolean): Self

    Permalink

    Removes any Query String Parameters that return false when applied to the given Function

  22. def filterQueryNames(f: (String) ⇒ Boolean): Self

    Permalink

    Removes any Query String Parameters that return false when their name is applied to the given Function

  23. def filterQueryValues(f: (String) ⇒ Boolean): Self

    Permalink

    Removes any Query String Parameters that return false when their value is applied to the given Function

  24. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def flatMapQuery(f: ((String, Option[String])) ⇒ Iterable[(String, Option[String])]): Self

    Permalink

    Transforms the Query String by applying the specified Function to each Query String Parameter

    Transforms the Query String by applying the specified Function to each Query String Parameter

    f

    A function that returns a collection of Parameters when applied to each parameter

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

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

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

    Permalink
    Definition Classes
    Any
  29. def mapQuery(f: PartialFunction[(String, Option[String]), (String, Option[String])]): Self

    Permalink

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Parameters not defined in the PartialFunction will be left as-is.

    f

    A function that returns a new Parameter when applied to each Parameter

  30. def mapQueryNames(f: (String) ⇒ String): Self

    Permalink

    Transforms the Query String by applying the specified Function to each Query String Parameter name

    Transforms the Query String by applying the specified Function to each Query String Parameter name

    f

    A function that returns a new Parameter name when applied to each Parameter name

  31. def mapQueryValues(f: (String) ⇒ String): Self

    Permalink

    Transforms the Query String by applying the specified Function to each Query String Parameter value

    Transforms the Query String by applying the specified Function to each Query String Parameter value

    f

    A function that returns a new Parameter value when applied to each Parameter value

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

    Permalink
    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. def removeParams(k: Iterable[String]): Self

    Permalink

    Removes all Query String parameters with a name in the specified list

    Removes all Query String parameters with a name in the specified list

    k

    Names of Query String parameter(s) to remove

  36. def removeParams(k: String*): Self

    Permalink

    Removes all Query String parameters with a name in the specified list

    Removes all Query String parameters with a name in the specified list

    k

    Names of Query String parameter(s) to remove

  37. def removeParams(k: String): Self

    Permalink

    Removes all Query String parameters with the specified key

    Removes all Query String parameters with the specified key

    k

    Key for the Query String parameter(s) to remove

  38. def removeQueryString(): Self

    Permalink

    Removes all Query String parameters

  39. def replaceParams(k: String, v: String): Self

    Permalink

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    k

    Key for the Query String parameter(s) to replace

    v

    value to replace with

    returns

    A new Uri with the result of the replace

  40. def replaceParams(k: String, v: Option[String]): Self

    Permalink

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value

    By default, pairs without values, such as ("param", None), represent query params without values, i.e ?param Using a UriConfig(renderQuery = ExcludeNones), will cause pairs with None values not to be rendered

    k

    Key for the Query String parameter(s) to replace

    v

    value to replace with

    returns

    A new Uri with the result of the replace

  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  42. def toAbsoluteUrl: AbsoluteUrl

    Permalink
  43. def toJavaURI: URI

    Permalink

    Converts to a java.net.URI

    Converts to a java.net.URI

    This involves a toString and URI.parse because the specific java.net.URI constructors do not deal properly with encoded elements

    returns

    a java.net.URI matching this io.lemonlabs.uri.Uri

    Definition Classes
    Uri
  44. def toProtocolRelativeUrl: ProtocolRelativeUrl

    Permalink
  45. def toRelativeUrl: RelativeUrl

    Permalink
  46. def toString(): String

    Permalink
    Definition Classes
    Uri → AnyRef → Any
  47. def toStringPunycode: String

    Permalink

    returns

    the URL as a String. If the URI has a domain name for a host, any unicode characters will be returned in ASCII Compatible Encoding (ACE), as defined by the ToASCII operation of RFC 3490.

  48. def toStringRaw: String

    Permalink

    Returns the path with no encoders taking place (e.g.

    Returns the path with no encoders taking place (e.g. non ASCII characters will not be percent encoded)

    returns

    String containing the raw path for this Uri

    Definition Classes
    Uri
  49. def toUrl: Url

    Permalink
    Definition Classes
    UrlUri
  50. def toUrn: Urn

    Permalink
    Definition Classes
    UrlUri
  51. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. def withFragment(fragment: String): Self

    Permalink

    Copies this Url but with the fragment set as the given value.

    Copies this Url but with the fragment set as the given value.

    fragment

    the new fragment to set

    returns

    a new Url with the specified fragment

  55. def withHost(host: String): SelfWithAuthority

    Permalink

    Copies this Url but with the host set as the given value.

    Copies this Url but with the host set as the given value.

    host

    the new host to set

    returns

    a new Url with the specified host

  56. def withQueryString(params: (String, String)*): Self

    Permalink

    Replaces the all existing Query String parameters with a new set of query params

  57. def withQueryStringOptionValues(params: (String, Option[String])*): Self

    Permalink

    Replaces the all existing Query String parameters with a new set of query params

    Replaces the all existing Query String parameters with a new set of query params

    Pairs with values, such as ("k", Some("v")), represent query params with values, i.e ?k=v Pairs without values, such as ("k", None), represent query params without values, i.e ?k

Inherited from Uri

Inherited from AnyRef

Inherited from Any

Ungrouped