Uri

class Uri : Comparable<Uri>

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val decodedAuthority: ByteString?
Link copied to clipboard
val decodedFragment: ByteString?
Link copied to clipboard
val decodedHost: ByteString?
Link copied to clipboard
val decodedPath: ByteString
Link copied to clipboard
val decodedQuery: ByteString?
Link copied to clipboard
val decodedUserInfo: ByteString?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val port: Int?
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun compareTo(other: Uri): Int
Link copied to clipboard
fun copyDecoded(scheme: String? = this.scheme, decodedUserInfo: ByteString? = BYTE_STRING_COPY, decodedHost: ByteString? = BYTE_STRING_COPY, port: Int? = this.port, decodedPath: ByteString = BYTE_STRING_COPY, decodedQuery: ByteString? = BYTE_STRING_COPY, decodedFragment: ByteString? = BYTE_STRING_COPY): Uri
Link copied to clipboard
fun copyEncoded(scheme: String? = this.scheme, encodedUserInfo: String? = this.encodedUserInfo, encodedHost: String? = this.encodedHost, port: Int? = this.port, encodedPath: String = this.encodedPath, encodedQuery: String? = this.encodedQuery, encodedFragment: String? = this.encodedFragment): Uri
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String