final class RichURL extends AnyVal with RichURIBase[URL]

Source
RichURL.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RichURL
  2. RichURIBase
  3. AnyVal
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RichURL(self: URL)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. def addQueryParam(key: String, value: String): URL
    Definition Classes
    RichURIBase
  5. def addQueryParams(other: QueryParams): URL
    Definition Classes
    RichURIBase
  6. def addQueryParams(kvPairs: (String, String)*): URL
    Definition Classes
    RichURIBase
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def copy(scheme: Option[String] = scheme, userInfo: Option[String] = userInfo, host: Option[String] = host, port: Option[Int] = port, path: Option[String] = path, query: Option[String] = query, fragment: Option[String] = fragment): URL
    Definition Classes
    RichURIBase
  9. def fragment: Option[String]
    Definition Classes
    RichURLRichURIBase
  10. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  11. def host: Option[String]
    Definition Classes
    RichURLRichURIBase
  12. def intern: URL
  13. def isFile: Boolean

    Is this a file:// URI/URL?

    Is this a file:// URI/URL?

    Definition Classes
    RichURIBase
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def make(s: String): URL
    Attributes
    protected
    Definition Classes
    RichURLRichURIBase
  16. def path: Option[String]
    Definition Classes
    RichURLRichURIBase
  17. final def pathAndQueryURI: URI
    Definition Classes
    RichURIBase
  18. final def pathQueryAndFragmentURI: URI
    Definition Classes
    RichURIBase
  19. def port: Option[Int]
    Definition Classes
    RichURLRichURIBase
  20. def query: Option[String]
    Definition Classes
    RichURLRichURIBase
  21. def queryParams: QueryParams
    Definition Classes
    RichURLRichURIBase
  22. def removeQueryParam(key: String): URL
    Definition Classes
    RichURIBase
  23. def removeQueryParams(keys: String*): URL
    Definition Classes
    RichURIBase
  24. def scheme: Option[String]
    Definition Classes
    RichURLRichURIBase
  25. val self: URL
    Definition Classes
    RichURLRichURIBase
  26. def toFile: File
    Definition Classes
    RichURIBase
  27. def toFileOption: Option[File]
    Definition Classes
    RichURIBase
  28. def toString(): String
    Definition Classes
    Any
  29. def toURI: URI
    Attributes
    protected
    Definition Classes
    RichURLRichURIBase
  30. def updateQueryParam(key: String, value: String): URL
    Definition Classes
    RichURIBase
  31. def updateQueryParams(kvPairs: (String, String)*): URL
    Definition Classes
    RichURIBase
  32. def userInfo: Option[String]
    Definition Classes
    RichURLRichURIBase
  33. def withHost(host: String): URL
    Definition Classes
    RichURIBase
  34. def withPath(path: String): URL
    Definition Classes
    RichURIBase
  35. def withQueryParam(kv: (String, String)): URL

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

    Definition Classes
    RichURIBase
  36. def withQueryParam(key: String, value: String): URL

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

    Definition Classes
    RichURIBase
  37. def withQueryParams(params: QueryParams): URL

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

    Definition Classes
    RichURIBase
  38. def withQueryParams(params: (String, String)*): URL

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

    Definition Classes
    RichURIBase
  39. def withScheme(scheme: String): URL
    Definition Classes
    RichURIBase
  40. def withoutQueryParams: URL
    Definition Classes
    RichURIBase

Inherited from RichURIBase[URL]

Inherited from AnyVal

Inherited from Any

Ungrouped