final case class URL(path: Path, kind: Location = URL.Location.Relative, queryParams: QueryParams = QueryParams.empty, fragment: Option[Fragment] = None) extends Product with Serializable

Self Type
URL
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. URL
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new URL(path: Path, kind: Location = URL.Location.Relative, queryParams: QueryParams = QueryParams.empty, fragment: Option[Fragment] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++(that: URL): URL
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def absolute(scheme: Scheme, host: String, port: Int): URL
  6. def absolute(host: String): URL
  7. def addTrailingSlash: URL
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  10. def dropTrailingSlash: URL
  11. def encode: String
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. val fragment: Option[Fragment]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def host: Option[String]
  16. def hostPort: Option[String]
  17. def isAbsolute: Boolean
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def isRelative: Boolean
  20. val kind: Location
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def normalize: URL
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. val path: Path
  26. def port: Option[Int]
  27. def portIfNotDefault: Option[Int]
  28. def productElementNames: Iterator[String]
    Definition Classes
    Product
  29. val queryParams: QueryParams
  30. def relative: URL
  31. def scheme: Option[Scheme]
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. def toJavaURI: URI

    Returns a new java.net.URI representing this URL.

  34. def toJavaURL: Option[java.net.URL]

    Returns a new java.net.URL only if this URL represents an absolute location.

  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. def withHost(host: String): URL
  39. def withPath(path: String): URL
  40. def withPath(path: Path): URL
  41. def withPort(port: Int): URL
  42. def withQueryParams(query: String): URL
  43. def withQueryParams(queryParams: (String, Chunk[String])*): URL
  44. def withQueryParams(queryParams: Map[String, Chunk[String]]): URL
  45. def withQueryParams(queryParams: QueryParams): URL
  46. def withScheme(scheme: Scheme): URL

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped