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
- Alphabetic
- By Inheritance
Inherited
- URL
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new URL(path: Path, kind: Location = URL.Location.Relative, queryParams: QueryParams = QueryParams.empty, fragment: Option[Fragment] = None)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def ++(that: URL): URL
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addTrailingSlash: URL
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def dropTrailingSlash: URL
- def encode: String
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val fragment: Option[Fragment]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def host: Option[String]
- def hostWithOptionalPort: Option[String]
- def isAbsolute: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isRelative: Boolean
- val kind: Location
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val path: Path
- def port: Option[Int]
- def portIfNotDefault: Option[Int]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val queryParams: QueryParams
- def scheme: Option[Scheme]
- def setHost(host: String): URL
- def setPath(path: String): URL
- def setPath(path: Path): URL
- def setPort(port: Int): URL
- def setQueryParams(query: String): URL
- def setQueryParams(queryParams: (String, Chunk[String])*): URL
- def setQueryParams(queryParams: Map[String, Chunk[String]]): URL
- def setQueryParams(queryParams: QueryParams): URL
- def setScheme(scheme: Scheme): URL
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toJavaURI: URI
Returns a new java.net.URI representing this URL.
- def toJavaURL: Option[java.net.URL]
Returns a new java.net.URL only if this URL represents an absolute location.
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])