protected static String |
URI.decode(char[] component,
String charset) |
Decodes URI encoded string.
|
protected static String |
URI.decode(String component,
String charset) |
Decodes URI encoded string.
|
protected static char[] |
URI.encode(String original,
BitSet allowed,
String charset) |
Encodes URI string.
|
String |
URI.getAboveHierPath() |
Get the level above the this hierarchy level.
|
String |
URI.getAuthority() |
Get the authority.
|
String |
URI.getCurrentHierPath() |
Get the current hierarchy level.
|
String |
URI.getEscapedAboveHierPath() |
Get the level above the this hierarchy level.
|
String |
URI.getEscapedCurrentHierPath() |
Get the escaped current hierarchy level.
|
String |
URI.getFragment() |
Get the fragment.
|
String |
URI.getHost() |
Get the host.
|
String |
URI.getName() |
Get the basename of the path.
|
String |
URI.getPath() |
Get the path.
|
String |
URI.getPathQuery() |
Get the path and query.
|
String |
URI.getQuery() |
Get the query.
|
char[] |
URI.getRawAboveHierPath() |
Get the level above the this hierarchy level.
|
char[] |
URI.getRawCurrentHierPath() |
Get the raw-escaped current hierarchy level.
|
protected char[] |
URI.getRawCurrentHierPath(char[] path) |
Get the raw-escaped current hierarchy level in the given path.
|
String |
URI.getURI() |
It can be gotten the URI character sequence.
|
String |
URI.getURIReference() |
Get the original URI reference string.
|
String |
URI.getUserinfo() |
Get the userinfo.
|
void |
URI.normalize() |
Normalizes the path part of this URI.
|
protected char[] |
URI.normalize(char[] path) |
Normalize the given hier path part.
|
protected void |
URI.parseAuthority(String original,
boolean escaped) |
Parse the authority component.
|
protected void |
URI.parseUriReference(String original,
boolean escaped) |
In order to avoid any possilbity of conflict with non-ASCII characters,
Parse a URI reference as a String with the character
encoding of the local system or the document.
|
protected char[] |
URI.resolvePath(char[] basePath,
char[] relPath) |
Resolve the base and relative path.
|
void |
URI.setEscapedAuthority(String escapedAuthority) |
Set the authority.
|
void |
URI.setEscapedFragment(String escapedFragment) |
Set the escaped fragment string.
|
void |
URI.setEscapedPath(String escapedPath) |
Set the escaped path.
|
void |
URI.setEscapedQuery(String escapedQuery) |
Set the escaped query string.
|
void |
URI.setFragment(String fragment) |
Set the fragment.
|
void |
URI.setPath(String path) |
Set the path.
|
void |
URI.setQuery(String query) |
Set the query.
|
void |
URI.setRawAuthority(char[] escapedAuthority) |
Set the authority.
|
void |
URI.setRawFragment(char[] escapedFragment) |
Set the raw-escaped fragment.
|
void |
URI.setRawPath(char[] escapedPath) |
Set the raw-escaped path.
|
void |
URI.setRawQuery(char[] escapedQuery) |
Set the raw-escaped query.
|