| java.lang.Object java.net.URI
Constructor Summary | |
public | URI(String uri) | public | URI(String scheme, String ssp, String frag) | public | URI(String scheme, String userinfo, String host, int port, String path, String query, String fragment) | public | URI(String scheme, String host, String path, String fragment) | public | URI(String scheme, String authority, String path, String query, String fragment) |
getFragment | public String getFragment()(Code) | | Returns the fragment component.
String |
getHost | public String getHost()(Code) | | Returns the host component.
String |
getPath | public String getPath()(Code) | | Returns the path component.
String |
getPort | public int getPort()(Code) | | Returns the port number.
int |
getQuery | public String getQuery()(Code) | | Returns the query component.
String |
getRawAuthority | public String getRawAuthority()(Code) | | Returns the authority component in raw form.
String |
getRawFragment | public String getRawFragment()(Code) | | Returns the fragment component in raw form.
String |
getRawPath | public String getRawPath()(Code) | | Returns the path component in raw form.
String |
getRawQuery | public String getRawQuery()(Code) | | Returns the query component in raw form.
String |
getRawSchemeSpecificPart | public String getRawSchemeSpecificPart()(Code) | | Returns the scheme-specific part component in raw form.
String |
getRawUserInfo | public String getRawUserInfo()(Code) | | Returns the user-info component in raw form.
String |
getScheme | public String getScheme()(Code) | | Returns the scheme.
String |
getSchemeSpecificPart | public String getSchemeSpecificPart()(Code) | | Returns the scheme-specific part component.
String |
getUserInfo | public String getUserInfo()(Code) | | Returns the userinfo.
String |
hashCode | public int hashCode()(Code) | | |
isAbsolute | public boolean isAbsolute()(Code) | | Indicates whether this URI is absolute
boolean |
isOpaque | public boolean isOpaque()(Code) | | Indicates whether this URI is opaque
true if the URI is opaque, otherwise false |
parseServerAuthority | public URI parseServerAuthority() throws URISyntaxException(Code) | | Return this uri instance if it has already been determined as a
ServerAuthority Otherwise try to parse it again as a server authority to
produce a URISyntaxException with the proper diagnostic message.
|
|
|