| Package | Description |
|---|---|
| org.htmlunit.cyberneko.xerces.util |
| Modifier and Type | Method and Description |
|---|---|
void |
URI.setFragment(String fragment)
Set the fragment for this URI.
|
void |
URI.setHost(String host)
Set the host for this URI.
|
void |
URI.setPath(String path)
Set the path for this URI.
|
void |
URI.setPort(int port)
Set the port for this URI. -1 is used to indicate that the port is not
specified, otherwise valid port numbers are between 0 and 65535.
|
void |
URI.setQueryString(String queryString)
Set the query string for this URI.
|
void |
URI.setScheme(String scheme)
Set the scheme for this URI.
|
void |
URI.setUserinfo(String userinfo)
Set the userinfo for this URI.
|
| Constructor and Description |
|---|
URI(String uriSpec)
Construct a new URI from a URI specification string.
|
URI(String uriSpec,
boolean allowNonAbsoluteURI)
Construct a new URI from a URI specification string.
|
URI(String scheme,
String userinfo,
String host,
int port,
String path,
String queryString,
String fragment)
Construct a new URI that follows the generic URI syntax from its component
parts.
|
URI(String scheme,
String host,
String path,
String queryString,
String fragment)
Construct a new URI that follows the generic URI syntax from its component
parts.
|
URI(URI base,
String uriSpec)
Construct a new URI from a base URI and a URI specification string.
|
URI(URI base,
String uriSpec,
boolean allowNonAbsoluteURI)
Construct a new URI from a base URI and a URI specification string.
|
Copyright © 2024 HtmlUnit. All rights reserved.