| Constructor and Description |
|---|
OpaqueUri(Scheme scheme) |
OpaqueUri(Scheme scheme,
Path path) |
OpaqueUri(Scheme scheme,
Path path,
Query query) |
OpaqueUri(Scheme scheme,
Path path,
Query query,
Fragment fragment) |
| Modifier and Type | Method and Description |
|---|---|
org.dmfs.optional.Optional<? extends Authority> |
authority()
Returns the
Optional Authority of the URI reference. |
org.dmfs.optional.Optional<? extends Fragment> |
fragment()
Returns the
Optional Fragment of the URI reference. |
boolean |
isAbsolute()
Returns whether this URI reference is absolute, i.e. a URI.
|
boolean |
isHierarchical()
Returns whether this URI reference is hierarchical.
|
Path |
path()
Returns the
Path of this URI reference. |
org.dmfs.optional.Optional<? extends Query> |
query()
Returns the
Optional Query of the URI reference. |
org.dmfs.optional.Optional<? extends Scheme> |
scheme()
Returns the
Optional Scheme of the URI reference. |
public OpaqueUri(Scheme scheme)
public org.dmfs.optional.Optional<? extends Scheme> scheme()
UriOptional Scheme of the URI reference.public org.dmfs.optional.Optional<? extends Authority> authority()
UriOptional Authority of the URI reference.public Path path()
UriPath of this URI reference.public org.dmfs.optional.Optional<? extends Query> query()
UriOptional Query of the URI reference.public org.dmfs.optional.Optional<? extends Fragment> fragment()
UriOptional Fragment of the URI reference.public boolean isHierarchical()
UriisHierarchical in interface Uritrue if the URI is hierarchical, false otherwise.public boolean isAbsolute()
UriisAbsolute in interface Uritrue if the URI is absolute, false otherwise.