| java.lang.Object org.openharmonise.commons.net.URIWrapper
URIWrapper | public class URIWrapper (Code) | | Wraps the java.net.URI implementation and adds some useful
utility methods.
author: Matthew Large version: $Revision: 1.1 $ |
Constructor Summary | |
public | URIWrapper(String uri) Constructs an object representing the given URI. | public | URIWrapper(String scheme, String ssp, String fragment) Constructs a URI from the given components. | public | URIWrapper(String scheme, String userInfo, String host, int port, String path, String query, String fragment) Constructs a URI from the given components. | public | URIWrapper(String scheme, String host, String path, String fragment) Constructs a hierarchical URI from the given components. | public | URIWrapper(String scheme, String authority, String path, String query, String fragment) Constructs a hierarchical URI from the given components. |
URIWrapper | public URIWrapper(String uri)(Code) | | Constructs an object representing the given URI.
Parameters: uri - URI to be represented |
URIWrapper | public URIWrapper(String scheme, String ssp, String fragment)(Code) | | Constructs a URI from the given components.
Parameters: scheme - Scheme name Parameters: ssp - Scheme-specific part Parameters: fragment - Fragment |
URIWrapper | public URIWrapper(String scheme, String userInfo, String host, int port, String path, String query, String fragment)(Code) | | Constructs a URI from the given components.
Parameters: scheme - Scheme name Parameters: userInfo - User name and authorization information Parameters: host - Host name Parameters: port - Port number Parameters: path - Path Parameters: query - Query Parameters: fragment - Fragment |
URIWrapper | public URIWrapper(String scheme, String host, String path, String fragment)(Code) | | Constructs a hierarchical URI from the given components.
Parameters: scheme - Scheme name Parameters: host - Host name Parameters: path - Path Parameters: fragment - Fragment |
URIWrapper | public URIWrapper(String scheme, String authority, String path, String query, String fragment)(Code) | | Constructs a hierarchical URI from the given components.
Parameters: scheme - Scheme name Parameters: authority - Authority Parameters: path - Path Parameters: query - Query Parameters: fragment - Fragment |
getPathSegments | public List getPathSegments()(Code) | | Returns a list of the path segments for this URI
list of String s |
hashCode | public int hashCode()(Code) | | |
|
|