Class/Object

io.lemonlabs.uri

UrlWithoutAuthority

Related Docs: object UrlWithoutAuthority | package uri

Permalink

final case class UrlWithoutAuthority(scheme: String, path: UrlPath, query: QueryString, fragment: Option[String])(implicit config: UriConfig = UriConfig.default) extends Url with Product with Serializable

Represents URLs that do not have an authority, for example: mailto:[email protected]

Linear Supertypes
Serializable, Serializable, Product, Equals, Url, Uri, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UrlWithoutAuthority
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Url
  7. Uri
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UrlWithoutAuthority(scheme: String, path: UrlPath, query: QueryString, fragment: Option[String])(implicit config: UriConfig = UriConfig.default)

    Permalink

Type Members

  1. type Self = UrlWithoutAuthority

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrlUri
  2. type SelfWithAuthority = AbsoluteUrl

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrl
  3. type SelfWithScheme = UrlWithoutAuthority

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrlUri

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

    Definition Classes
    Url
  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

    Definition Classes
    Url
  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 Pairs without values, i.e None, represent query params without values, i.e ?param

    name

    name of the parameter

    value

    value for the parameter

    returns

    A new Url with the new Query String parameter

    Definition Classes
    Url
  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 Pairs without values, such as ("param", None), represent query params without values, i.e ?param

    kv

    name-value pair for the query parameter to be added

    returns

    A new Url with the new Query String parameter

    Definition Classes
    Url
  8. def addParams(kvs: GenTraversable[(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

    Definition Classes
    Url
  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

    Definition Classes
    Url
  10. def addParamsOptionValues(kvs: GenTraversable[(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 Pairs without values, such as ("param", None), represent query params without values, i.e ?param

    kvs

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

    returns

    A new Url with the new Query String parameters

    Definition Classes
    Url
  11. def addPathPart(part: String): Self

    Permalink
    Definition Classes
    Url
  12. def addPathParts(parts: String*): Self

    Permalink
    Definition Classes
    Url
  13. def addPathParts(parts: GenTraversableOnce[String]): Self

    Permalink
    Definition Classes
    Url
  14. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. 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

    Definition Classes
    Url
  17. implicit val config: UriConfig

    Permalink
    Definition Classes
    UrlWithoutAuthorityUri
  18. final def eq(arg0: AnyRef): Boolean

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

    Permalink

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

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

    Definition Classes
    Url
  20. def filterQueryNames(f: (String) ⇒ Boolean): Self

    Permalink

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

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

    Definition Classes
    Url
  21. def filterQueryValues(f: (String) ⇒ Boolean): Self

    Permalink

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

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

    Definition Classes
    Url
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def flatMapQuery(f: ((String, Option[String])) ⇒ GenTraversableOnce[(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

    Definition Classes
    Url
  24. val fragment: Option[String]

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrl
  25. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  26. def hostOption: Option[Host]

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrl
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. 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

    Definition Classes
    UrlWithoutAuthorityUrl
  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

    Definition Classes
    Url
  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

    Definition Classes
    Url
  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

    Definition Classes
    Url
  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 password: Option[String]

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrl
  36. val path: UrlPath

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrlUri
  37. def port: Option[Int]

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrl
  38. 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

    Definition Classes
    UrlWithoutAuthorityUrl
  39. 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

    Definition Classes
    UrlWithoutAuthorityUrl
  40. val query: QueryString

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrl
  41. def removeParams(k: GenTraversableOnce[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

    Definition Classes
    Url
  42. 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

    Definition Classes
    Url
  43. 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

    Definition Classes
    Url
  44. def removeQueryString(): Self

    Permalink

    Removes all Query String parameters

    Removes all Query String parameters

    Definition Classes
    Url
  45. 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

    Definition Classes
    Url
  46. 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 Pairs without values, such as ("param", None), represent query params without values, i.e ?param

    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

    Definition Classes
    Url
  47. val scheme: String

    Permalink
  48. def schemeOption: Option[String]

    Permalink
    Definition Classes
    UrlWithoutAuthorityUri
  49. def self: UrlWithoutAuthority

    Permalink
    Definition Classes
    UrlWithoutAuthorityUri
  50. 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

    Definition Classes
    UrlWithoutAuthorityUrl
  51. 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 root 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

    Definition Classes
    UrlWithoutAuthorityUrl
  52. 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

    Definition Classes
    UrlWithoutAuthorityUrl
  53. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  54. def toAbsoluteUrl: AbsoluteUrl

    Permalink
    Definition Classes
    Url
  55. 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
  56. def toProtocolRelativeUrl: ProtocolRelativeUrl

    Permalink
    Definition Classes
    Url
  57. def toRelativeUrl: RelativeUrl

    Permalink
    Definition Classes
    Url
  58. def toString(): String

    Permalink
    Definition Classes
    Uri → AnyRef → Any
  59. 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
  60. def toUrl: Url

    Permalink
    Definition Classes
    UrlUri
  61. def toUrlWithoutAuthority: UrlWithoutAuthority

    Permalink
    Definition Classes
    Url
  62. def toUrn: Urn

    Permalink
    Definition Classes
    UrlUri
  63. def user: Option[String]

    Permalink
    Definition Classes
    UrlWithoutAuthorityUrl
  64. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. def withAuthority(authority: Authority): AbsoluteUrl

    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

    Definition Classes
    UrlWithoutAuthorityUrl
  68. def withFragment(fragment: Option[String]): UrlWithoutAuthority

    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

    Definition Classes
    UrlWithoutAuthorityUrl
  69. 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

    Definition Classes
    Url
  70. def withHost(host: Host): AbsoluteUrl

    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

    Definition Classes
    UrlWithoutAuthorityUrl
  71. 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

    Definition Classes
    Url
  72. def withPath(path: UrlPath): UrlWithoutAuthority

    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

    Definition Classes
    UrlWithoutAuthorityUrl
  73. def withPort(port: Int): AbsoluteUrl

    Permalink

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

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

    port

    the new port to set

    returns

    a new Url with the specified port

  74. def withQueryString(query: QueryString): UrlWithoutAuthority

    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

    Definition Classes
    UrlWithoutAuthorityUrl
  75. def withQueryString(params: (String, 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

    Definition Classes
    Url
  76. 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

    Definition Classes
    Url
  77. def withScheme(scheme: String): UrlWithoutAuthority

    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
    UrlWithoutAuthorityUri

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Url

Inherited from Uri

Inherited from AnyRef

Inherited from Any

Ungrouped