abstract class Uri extends AnyRef
Represents an Uri. Use methods on the class to create modified copies of a given instance.
- Source
- Uri.java
- Alphabetic
- By Inheritance
- Uri
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Uri()
Abstract Value Members
- abstract def addPathSegment(segment: String): Uri
Returns a copy of this instance with a path segment added at the end.
- abstract def asScala(): scaladsl.model.Uri
Returns the Scala DSL representation of this Uri.
- abstract def fragment(fragment: Optional[String]): Uri
Returns a copy of this instance with a new optional fragment.
- abstract def fragment(fragment: String): Uri
Returns a copy of this instance with a new fragment.
- abstract def fragment(): Optional[String]
Returns the fragment part of this Uri.
- abstract def getHost(): Host
Returns the host of this instance
- abstract def getPathString(): String
Returns the path of this instance
- abstract def getPort(): Int
Returns the port of this instance
- abstract def getScheme(): String
Returns the scheme of this instance
- abstract def getUserInfo(): String
Returns the user info of this instance
- abstract def host(host: String): Uri
Returns a copy of this instance with a new host.
- abstract def host(host: Host): Uri
Returns a copy of this instance with a new Host.
- abstract def host(): Host
Returns the Host of this Uri.
- abstract def isAbsolute(): Boolean
Returns if this is an absolute Uri.
- abstract def isEmpty(): Boolean
Returns if this is an empty Uri.
- abstract def isRelative(): Boolean
Returns if this is a relative Uri.
- abstract def path(path: String): Uri
Returns a copy of this instance with a new path.
- abstract def path(): String
Returns a String representation of the path of this Uri.
- abstract def pathSegments(): Iterable[String]
Returns the path segments of this Uri as an Iterable.
- abstract def port(port: Int): Uri
Returns a copy of this instance with a new port.
- abstract def port(): Int
Returns the port of this Uri.
- abstract def query(query: Query): Uri
Returns a copy of this instance with a new query.
- abstract def query(charset: Charset, mode: ParsingMode): Query
Returns the parsed Query instance of this Uri using the given charset and parsing mode.
- abstract def query(): Query
Returns the parsed Query instance of this Uri.
- abstract def queryString(charset: Charset): Optional[String]
Returns a decoded String representation of the query of this Uri.
- abstract def rawQueryString(rawQuery: String, strict: Boolean): Uri
Returns a copy of this instance with a new query.
Returns a copy of this instance with a new query.
Characters that are not within the range described at https://tools.ietf.org/html/rfc3986#section-3.4 should be percent-encoded. Characters that are in that range may or may not be percent-encoded, and depending on how the query string is parsed this might be relevant: for example, when interpreting the query string as 'key=value' pairs you could use the percent-encoded '=' ('%22) to include a '=' in the key or value.
- strict
depending on the 'strict' flag, characters outside of the range allowed by RFC3986 will either cause a
IllegalUriException
or be automatically percent-encoded. Be aware that relying on automatic percent-encoding is usually a programming error.
- abstract def rawQueryString(rawQuery: String): Uri
Returns a copy of this instance with a new query.
Returns a copy of this instance with a new query.
Characters that are not within the range described at https://tools.ietf.org/html/rfc3986#section-3.4 should be percent-encoded. Characters that are in that range may or may not be percent-encoded, and depending on how the query string is parsed this might be relevant: for example, when interpreting the query string as 'key=value' pairs you could use the percent-encoded '=' ('%22) to include a '=' in the key or value.
When characters are encountered that are outside of the RFC3986 range they are automatically percent-encoded, but be aware that relying on this is usually a programming error.
- abstract def rawQueryString(): Optional[String]
Returns an undecoded String representation of the query of this Uri.
- abstract def scheme(scheme: String): Uri
Returns a copy of this instance with a new scheme.
- abstract def scheme(): String
Returns the scheme of this Uri.
- abstract def toRelative(): Uri
Returns a copy of this instance that is relative.
- abstract def userInfo(userInfo: String): Uri
Returns a copy of this instance with new user-info.
- abstract def userInfo(): String
Returns the user-info of this Uri.
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Uri, B)
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def ensuring(cond: (Uri) => Boolean, msg: => Any): Uri
- def ensuring(cond: (Uri) => Boolean): Uri
- def ensuring(cond: Boolean, msg: => Any): Uri
- def ensuring(cond: Boolean): Uri
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
Deprecated Value Members
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Uri toStringFormat[Uri] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (Uri, B)
- Implicit
- This member is added by an implicit conversion from Uri toArrowAssoc[Uri] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.