Initializer |
Uri(String? scheme = null, Authority authority = ..., Path path = ..., Query query = ..., String? fragment = null) Parameters:
|
Attributes | |
authority | Source Codeshared Authority authority The optional Authority part (contains user, password, host and port) |
fragment | Source Codeshared String? fragment The optional fragment (hash) part |
hash | Source Codeshared actual Integer hash The hash value of the value, which allows the value to be an element of a hash-based set or key of a hash-based map. Implementations must respect the constraint that:
Therefore, a class which refines In general, Note that when executing on a Java Virtual Machine, the
64-bit |
humanRepresentation | Source Codeshared String humanRepresentation Returns a human (not parseable) representation of this URI. |
path | Source Codeshared Path path The optional Path part |
pathPart | Source Codeshared String pathPart Returns the path as an externalisable (percent-encoded) string representation. Can be an empty string. |
query | Source Codeshared Query query The optional query part |
queryPart | Source Codeshared String? queryPart Returns the query as an externalisable (percent-encoded) string representation. Can be null. |
relative | Source Codeshared Boolean relative Returns true if this is a relative URI |
scheme | Source Codeshared String? scheme The optional URI scheme: |
string | Source Codeshared actual String string Returns an externalisable (percent-encoded) representation of this URI. Refines Object.string |
Inherited Attributes |
Attributes inherited from: Object |
Methods | |
equals | Source Codeshared actual Boolean equals(Object that) Returns true if the given object is the same as this object |
with | Source Codeshared Uri with(String? scheme = ..., Authority authority = ..., Path path = ..., Query query = ..., String? fragment = ...) |
withAuthority | Source Codeshared Uri withAuthority(Authority authority) |
withFragment | Source Codeshared Uri withFragment(String? fragment) |
withPath | Source Codeshared Uri withPath(Path path) |
withQuery | Source Codeshared Uri withQuery(Query query) |
withScheme | Source Codeshared Uri withScheme(String? scheme) |
Inherited Methods |
Methods inherited from: Object |