Java Doc for HttpsURL.java in  » Net » Apache-common-HttpClient » org » apache » commons » httpclient » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » Apache common HttpClient » org.apache.commons.httpclient 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.commons.httpclient.URI
      org.apache.commons.httpclient.HttpURL
         org.apache.commons.httpclient.HttpsURL

HttpsURL
public class HttpsURL extends HttpURL (Code)
The HTTPS URL.
author:
   Sung-Gu
author:
   Mike Bowler


Field Summary
final public static  intDEFAULT_PORT
     Default port for HTTPS URL.
final public static  char[]DEFAULT_SCHEME
     Default scheme for HTTPS URL.
final public static  int_default_port
     Default port for HTTPS URL.
final public static  char[]_default_scheme
     Default scheme for HTTPS URL.
final static  longserialVersionUID
     The serialVersionUID.

Constructor Summary
protected  HttpsURL()
     Create an instance as an internal use.
public  HttpsURL(char[] escaped, String charset)
     Construct a HTTPS URL as an escaped form of a character array with the given charset to do escape encoding.
public  HttpsURL(char[] escaped)
     Construct a HTTPS URL as an escaped form of a character array.
public  HttpsURL(String original, String charset)
     Construct a HTTPS URL from a given string with the given charset to do escape encoding.
public  HttpsURL(String original)
     Construct a HTTPS URL from a given string.
public  HttpsURL(String host, int port, String path)
     Construct a HTTPS URL from given components.
public  HttpsURL(String host, int port, String path, String query)
     Construct a HTTPS URL from given components.
public  HttpsURL(String user, String password, String host)
     Construct a HTTPS URL from given components.
public  HttpsURL(String user, String password, String host, int port)
     Construct a HTTPS URL from given components.
public  HttpsURL(String user, String password, String host, int port, String path)
     Construct a HTTPS URL from given components.
public  HttpsURL(String user, String password, String host, int port, String path, String query)
     Construct a HTTPS URL from given components.
public  HttpsURL(String host, String path, String query, String fragment)
     Construct a HTTPS URL from given components.
public  HttpsURL(String userinfo, String host, String path, String query, String fragment)
     Construct a HTTPS URL from given components.
public  HttpsURL(String userinfo, String host, int port, String path)
     Construct a HTTPS URL from given components.
public  HttpsURL(String userinfo, String host, int port, String path, String query)
     Construct a HTTPS URL from given components.
public  HttpsURL(String userinfo, String host, int port, String path, String query, String fragment)
     Construct a HTTPS URL from given components.
public  HttpsURL(String user, String password, String host, int port, String path, String query, String fragment)
     Construct a HTTP URL from given components.
public  HttpsURL(HttpsURL base, String relative)
     Construct a HTTPS URL with a given relative HTTPS URL string.
public  HttpsURL(HttpsURL base, HttpsURL relative)
     Construct a HTTPS URL with a given relative URL.

Method Summary
protected  voidcheckValid()
     Verify the valid class use for construction.
public  intgetPort()
     Get the port number.
public  char[]getRawScheme()
     Get the scheme.
public  StringgetScheme()
     Get the scheme.

Field Detail
DEFAULT_PORT
final public static int DEFAULT_PORT(Code)
Default port for HTTPS URL.



DEFAULT_SCHEME
final public static char[] DEFAULT_SCHEME(Code)
Default scheme for HTTPS URL.



_default_port
final public static int _default_port(Code)
Default port for HTTPS URL. HttpsURL.DEFAULT_PORT



_default_scheme
final public static char[] _default_scheme(Code)
Default scheme for HTTPS URL. HttpsURL.DEFAULT_SCHEME



serialVersionUID
final static long serialVersionUID(Code)
The serialVersionUID.




Constructor Detail
HttpsURL
protected HttpsURL()(Code)
Create an instance as an internal use.



HttpsURL
public HttpsURL(char[] escaped, String charset) throws URIException, NullPointerException(Code)
Construct a HTTPS URL as an escaped form of a character array with the given charset to do escape encoding.
Parameters:
  escaped - the HTTPS URL character sequence
Parameters:
  charset - the charset to do escape encoding
throws:
  URIException - If HttpsURL.checkValid() fails
throws:
  NullPointerException - if escaped is null
See Also:   HttpsURL.getProtocolCharset



HttpsURL
public HttpsURL(char[] escaped) throws URIException, NullPointerException(Code)
Construct a HTTPS URL as an escaped form of a character array.
Parameters:
  escaped - the HTTPS URL character sequence
throws:
  URIException - If HttpsURL.checkValid() fails
throws:
  NullPointerException - if escaped is null
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String original, String charset) throws URIException(Code)
Construct a HTTPS URL from a given string with the given charset to do escape encoding.
Parameters:
  original - the HTTPS URL string
Parameters:
  charset - the charset to do escape encoding
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getProtocolCharset



HttpsURL
public HttpsURL(String original) throws URIException(Code)
Construct a HTTPS URL from a given string.
Parameters:
  original - the HTTPS URL string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String host, int port, String path) throws URIException(Code)
Construct a HTTPS URL from given components.
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String host, int port, String path, String query) throws URIException(Code)
Construct a HTTPS URL from given components.
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
Parameters:
  query - the query string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String user, String password, String host) throws URIException(Code)
Construct a HTTPS URL from given components.
Parameters:
  user - the user name
Parameters:
  password - his or her password
Parameters:
  host - the host string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String user, String password, String host, int port) throws URIException(Code)
Construct a HTTPS URL from given components.
Parameters:
  user - the user name
Parameters:
  password - his or her password
Parameters:
  host - the host string
Parameters:
  port - the port number
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String user, String password, String host, int port, String path) throws URIException(Code)
Construct a HTTPS URL from given components.
Parameters:
  user - the user name
Parameters:
  password - his or her password
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String user, String password, String host, int port, String path, String query) throws URIException(Code)
Construct a HTTPS URL from given components.
Parameters:
  user - the user name
Parameters:
  password - his or her password
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
Parameters:
  query - The query string.
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String host, String path, String query, String fragment) throws URIException(Code)
Construct a HTTPS URL from given components.
Parameters:
  host - the host string
Parameters:
  path - the path string
Parameters:
  query - the query string
Parameters:
  fragment - the fragment string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String userinfo, String host, String path, String query, String fragment) throws URIException(Code)
Construct a HTTPS URL from given components. Note: The userinfo format is normally <username>:<password> where username and password must both be URL escaped.
Parameters:
  userinfo - the userinfo string whose parts are URL escaped
Parameters:
  host - the host string
Parameters:
  path - the path string
Parameters:
  query - the query string
Parameters:
  fragment - the fragment string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String userinfo, String host, int port, String path) throws URIException(Code)
Construct a HTTPS URL from given components. Note: The userinfo format is normally <username>:<password> where username and password must both be URL escaped.
Parameters:
  userinfo - the userinfo string whose parts are URL escaped
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String userinfo, String host, int port, String path, String query) throws URIException(Code)
Construct a HTTPS URL from given components. Note: The userinfo format is normally <username>:<password> where username and password must both be URL escaped.
Parameters:
  userinfo - the userinfo string whose parts are URL escaped
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
Parameters:
  query - the query string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String userinfo, String host, int port, String path, String query, String fragment) throws URIException(Code)
Construct a HTTPS URL from given components. Note: The userinfo format is normally <username>:<password> where username and password must both be URL escaped.
Parameters:
  userinfo - the userinfo string whose parts are URL escaped
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
Parameters:
  query - the query string
Parameters:
  fragment - the fragment string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(String user, String password, String host, int port, String path, String query, String fragment) throws URIException(Code)
Construct a HTTP URL from given components.
Parameters:
  user - the user name
Parameters:
  password - his or her password
Parameters:
  host - the host string
Parameters:
  port - the port number
Parameters:
  path - the path string
Parameters:
  query - the query string
Parameters:
  fragment - the fragment string
throws:
  URIException - If HttpsURL.checkValid() fails
See Also:   HttpsURL.getDefaultProtocolCharset



HttpsURL
public HttpsURL(HttpsURL base, String relative) throws URIException(Code)
Construct a HTTPS URL with a given relative HTTPS URL string.
Parameters:
  base - the base HttpsURL
Parameters:
  relative - the relative HTTPS URL string
throws:
  URIException - If HttpsURL.checkValid() fails



HttpsURL
public HttpsURL(HttpsURL base, HttpsURL relative) throws URIException(Code)
Construct a HTTPS URL with a given relative URL.
Parameters:
  base - the base HttpsURL
Parameters:
  relative - the relative HttpsURL
throws:
  URIException - If HttpsURL.checkValid() fails




Method Detail
checkValid
protected void checkValid() throws URIException(Code)
Verify the valid class use for construction.
throws:
  URIException - the wrong scheme use



getPort
public int getPort()(Code)
Get the port number. the port number



getRawScheme
public char[] getRawScheme()(Code)
Get the scheme. You can get the scheme explicitly. the scheme



getScheme
public String getScheme()(Code)
Get the scheme. You can get the scheme explicitly. the scheme null if empty or undefined



Fields inherited from org.apache.commons.httpclient.HttpURL
final public static int DEFAULT_PORT(Code)(Java Doc)
final public static char[] DEFAULT_SCHEME(Code)(Java Doc)
final public static int _default_port(Code)(Java Doc)
final public static char[] _default_scheme(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.commons.httpclient.HttpURL
protected void checkValid() throws URIException(Code)(Java Doc)
public String getEscapedPassword()(Code)(Java Doc)
public String getEscapedUser()(Code)(Java Doc)
public String getPassword() throws URIException(Code)(Java Doc)
public int getPort()(Code)(Java Doc)
public char[] getRawAboveHierPath() throws URIException(Code)(Java Doc)
public char[] getRawCurrentHierPath() throws URIException(Code)(Java Doc)
public char[] getRawPassword()(Code)(Java Doc)
public char[] getRawPath()(Code)(Java Doc)
public char[] getRawScheme()(Code)(Java Doc)
public char[] getRawUser()(Code)(Java Doc)
public String getScheme()(Code)(Java Doc)
public String getUser() throws URIException(Code)(Java Doc)
public void setEscapedPassword(String escapedPassword) throws URIException(Code)(Java Doc)
public void setEscapedUser(String escapedUser) throws URIException, NullPointerException(Code)(Java Doc)
public void setEscapedUserinfo(String escapedUser, String escapedPassword) throws URIException, NullPointerException(Code)(Java Doc)
public void setPassword(String password) throws URIException(Code)(Java Doc)
public void setQuery(String queryName, String queryValue) throws URIException, NullPointerException(Code)(Java Doc)
public void setQuery(String[] queryName, String[] queryValue) throws URIException, NullPointerException(Code)(Java Doc)
public void setRawPassword(char[] escapedPassword) throws URIException(Code)(Java Doc)
public void setRawUser(char[] escapedUser) throws URIException(Code)(Java Doc)
public void setRawUserinfo(char[] escapedUser, char[] escapedPassword) throws URIException(Code)(Java Doc)
protected void setURI()(Code)(Java Doc)
public void setUser(String user) throws URIException, NullPointerException(Code)(Java Doc)
public void setUserinfo(String user, String password) throws URIException, NullPointerException(Code)(Java Doc)
protected static String toUserinfo(String user, String password) throws URIException(Code)(Java Doc)

Fields inherited from org.apache.commons.httpclient.URI
final protected static BitSet IPv4address(Code)(Java Doc)
final protected static BitSet IPv6address(Code)(Java Doc)
final protected static BitSet IPv6reference(Code)(Java Doc)
final protected static BitSet URI_reference(Code)(Java Doc)
protected char[] _authority(Code)(Java Doc)
protected char[] _fragment(Code)(Java Doc)
protected char[] _host(Code)(Java Doc)
protected boolean _is_IPv4address(Code)(Java Doc)
protected boolean _is_IPv6reference(Code)(Java Doc)
protected boolean _is_abs_path(Code)(Java Doc)
protected boolean _is_hier_part(Code)(Java Doc)
protected boolean _is_hostname(Code)(Java Doc)
protected boolean _is_net_path(Code)(Java Doc)
protected boolean _is_opaque_part(Code)(Java Doc)
protected boolean _is_reg_name(Code)(Java Doc)
protected boolean _is_rel_path(Code)(Java Doc)
protected boolean _is_server(Code)(Java Doc)
protected char[] _opaque(Code)(Java Doc)
protected char[] _path(Code)(Java Doc)
protected int _port(Code)(Java Doc)
protected char[] _query(Code)(Java Doc)
protected char[] _scheme(Code)(Java Doc)
protected char[] _uri(Code)(Java Doc)
protected char[] _userinfo(Code)(Java Doc)
final protected static BitSet abs_path(Code)(Java Doc)
final protected static BitSet absoluteURI(Code)(Java Doc)
final public static BitSet allowed_IPv6reference(Code)(Java Doc)
final public static BitSet allowed_abs_path(Code)(Java Doc)
final public static BitSet allowed_authority(Code)(Java Doc)
final public static BitSet allowed_fragment(Code)(Java Doc)
final public static BitSet allowed_host(Code)(Java Doc)
final public static BitSet allowed_opaque_part(Code)(Java Doc)
final public static BitSet allowed_query(Code)(Java Doc)
final public static BitSet allowed_reg_name(Code)(Java Doc)
final public static BitSet allowed_rel_path(Code)(Java Doc)
final public static BitSet allowed_userinfo(Code)(Java Doc)
final public static BitSet allowed_within_authority(Code)(Java Doc)
final public static BitSet allowed_within_path(Code)(Java Doc)
final public static BitSet allowed_within_query(Code)(Java Doc)
final public static BitSet allowed_within_userinfo(Code)(Java Doc)
final protected static BitSet alpha(Code)(Java Doc)
final protected static BitSet alphanum(Code)(Java Doc)
final protected static BitSet authority(Code)(Java Doc)
final public static BitSet control(Code)(Java Doc)
protected static String defaultDocumentCharset(Code)(Java Doc)
protected static String defaultDocumentCharsetByLocale(Code)(Java Doc)
protected static String defaultDocumentCharsetByPlatform(Code)(Java Doc)
protected static String defaultProtocolCharset(Code)(Java Doc)
final public static BitSet delims(Code)(Java Doc)
final protected static BitSet digit(Code)(Java Doc)
final public static BitSet disallowed_opaque_part(Code)(Java Doc)
final public static BitSet disallowed_rel_path(Code)(Java Doc)
final protected static BitSet domainlabel(Code)(Java Doc)
final protected static BitSet escaped(Code)(Java Doc)
final protected static BitSet fragment(Code)(Java Doc)
protected int hash(Code)(Java Doc)
final protected static BitSet hex(Code)(Java Doc)
final protected static BitSet hier_part(Code)(Java Doc)
final protected static BitSet host(Code)(Java Doc)
final protected static BitSet hostname(Code)(Java Doc)
final protected static BitSet hostport(Code)(Java Doc)
final protected static BitSet mark(Code)(Java Doc)
final protected static BitSet net_path(Code)(Java Doc)
final protected static BitSet opaque_part(Code)(Java Doc)
final protected static BitSet param(Code)(Java Doc)
final protected static BitSet path(Code)(Java Doc)
final protected static BitSet path_segments(Code)(Java Doc)
final protected static BitSet pchar(Code)(Java Doc)
final protected static BitSet percent(Code)(Java Doc)
final protected static BitSet port(Code)(Java Doc)
protected String protocolCharset(Code)(Java Doc)
final protected static BitSet query(Code)(Java Doc)
final protected static BitSet reg_name(Code)(Java Doc)
final protected static BitSet rel_path(Code)(Java Doc)
final protected static BitSet rel_segment(Code)(Java Doc)
final protected static BitSet relativeURI(Code)(Java Doc)
final protected static BitSet reserved(Code)(Java Doc)
final protected static char[] rootPath(Code)(Java Doc)
final protected static BitSet scheme(Code)(Java Doc)
final protected static BitSet segment(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)
final protected static BitSet server(Code)(Java Doc)
final public static BitSet space(Code)(Java Doc)
final protected static BitSet toplabel(Code)(Java Doc)
final protected static BitSet unreserved(Code)(Java Doc)
final public static BitSet unwise(Code)(Java Doc)
final protected static BitSet uric(Code)(Java Doc)
final protected static BitSet uric_no_slash(Code)(Java Doc)
final protected static BitSet userinfo(Code)(Java Doc)
final public static BitSet within_userinfo(Code)(Java Doc)

Methods inherited from org.apache.commons.httpclient.URI
public synchronized Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public int compareTo(Object obj) throws ClassCastException(Code)(Java Doc)
protected static String decode(char[] component, String charset) throws URIException(Code)(Java Doc)
protected static String decode(String component, String charset) throws URIException(Code)(Java Doc)
protected static char[] encode(String original, BitSet allowed, String charset) throws URIException(Code)(Java Doc)
protected boolean equals(char[] first, char[] second)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public String getAboveHierPath() throws URIException(Code)(Java Doc)
public String getAuthority() throws URIException(Code)(Java Doc)
public String getCurrentHierPath() throws URIException(Code)(Java Doc)
public static String getDefaultDocumentCharset()(Code)(Java Doc)
public static String getDefaultDocumentCharsetByLocale()(Code)(Java Doc)
public static String getDefaultDocumentCharsetByPlatform()(Code)(Java Doc)
public static String getDefaultProtocolCharset()(Code)(Java Doc)
public String getEscapedAboveHierPath() throws URIException(Code)(Java Doc)
public String getEscapedAuthority()(Code)(Java Doc)
public String getEscapedCurrentHierPath() throws URIException(Code)(Java Doc)
public String getEscapedFragment()(Code)(Java Doc)
public String getEscapedName()(Code)(Java Doc)
public String getEscapedPath()(Code)(Java Doc)
public String getEscapedPathQuery()(Code)(Java Doc)
public String getEscapedQuery()(Code)(Java Doc)
public String getEscapedURI()(Code)(Java Doc)
public String getEscapedURIReference()(Code)(Java Doc)
public String getEscapedUserinfo()(Code)(Java Doc)
public String getFragment() throws URIException(Code)(Java Doc)
public String getHost() throws URIException(Code)(Java Doc)
public String getName() throws URIException(Code)(Java Doc)
public String getPath() throws URIException(Code)(Java Doc)
public String getPathQuery() throws URIException(Code)(Java Doc)
public int getPort()(Code)(Java Doc)
public String getProtocolCharset()(Code)(Java Doc)
public String getQuery() throws URIException(Code)(Java Doc)
public char[] getRawAboveHierPath() throws URIException(Code)(Java Doc)
public char[] getRawAuthority()(Code)(Java Doc)
protected char[] getRawCurrentHierPath(char[] path) throws URIException(Code)(Java Doc)
public char[] getRawCurrentHierPath() throws URIException(Code)(Java Doc)
public char[] getRawFragment()(Code)(Java Doc)
public char[] getRawHost()(Code)(Java Doc)
public char[] getRawName()(Code)(Java Doc)
public char[] getRawPath()(Code)(Java Doc)
public char[] getRawPathQuery()(Code)(Java Doc)
public char[] getRawQuery()(Code)(Java Doc)
public char[] getRawScheme()(Code)(Java Doc)
public char[] getRawURI()(Code)(Java Doc)
public char[] getRawURIReference()(Code)(Java Doc)
public char[] getRawUserinfo()(Code)(Java Doc)
public String getScheme()(Code)(Java Doc)
public String getURI() throws URIException(Code)(Java Doc)
public String getURIReference() throws URIException(Code)(Java Doc)
public String getUserinfo() throws URIException(Code)(Java Doc)
public boolean hasAuthority()(Code)(Java Doc)
public boolean hasFragment()(Code)(Java Doc)
public boolean hasQuery()(Code)(Java Doc)
public boolean hasUserinfo()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
protected int indexFirstOf(String s, String delims)(Code)(Java Doc)
protected int indexFirstOf(String s, String delims, int offset)(Code)(Java Doc)
protected int indexFirstOf(char[] s, char delim)(Code)(Java Doc)
protected int indexFirstOf(char[] s, char delim, int offset)(Code)(Java Doc)
public boolean isAbsPath()(Code)(Java Doc)
public boolean isAbsoluteURI()(Code)(Java Doc)
public boolean isHierPart()(Code)(Java Doc)
public boolean isHostname()(Code)(Java Doc)
public boolean isIPv4address()(Code)(Java Doc)
public boolean isIPv6reference()(Code)(Java Doc)
public boolean isNetPath()(Code)(Java Doc)
public boolean isOpaquePart()(Code)(Java Doc)
public boolean isRegName()(Code)(Java Doc)
public boolean isRelPath()(Code)(Java Doc)
public boolean isRelativeURI()(Code)(Java Doc)
public boolean isServer()(Code)(Java Doc)
protected char[] normalize(char[] path) throws URIException(Code)(Java Doc)
public void normalize() throws URIException(Code)(Java Doc)
protected void parseAuthority(String original, boolean escaped) throws URIException(Code)(Java Doc)
protected void parseUriReference(String original, boolean escaped) throws URIException(Code)(Java Doc)
protected boolean prevalidate(String component, BitSet disallowed)(Code)(Java Doc)
protected char[] removeFragmentIdentifier(char[] component)(Code)(Java Doc)
protected char[] resolvePath(char[] basePath, char[] relPath) throws URIException(Code)(Java Doc)
public static void setDefaultDocumentCharset(String charset) throws DefaultCharsetChanged(Code)(Java Doc)
public static void setDefaultProtocolCharset(String charset) throws DefaultCharsetChanged(Code)(Java Doc)
public void setEscapedAuthority(String escapedAuthority) throws URIException(Code)(Java Doc)
public void setEscapedFragment(String escapedFragment) throws URIException(Code)(Java Doc)
public void setEscapedPath(String escapedPath) throws URIException(Code)(Java Doc)
public void setEscapedQuery(String escapedQuery) throws URIException(Code)(Java Doc)
public void setFragment(String fragment) throws URIException(Code)(Java Doc)
public void setPath(String path) throws URIException(Code)(Java Doc)
public void setQuery(String query) throws URIException(Code)(Java Doc)
public void setRawAuthority(char[] escapedAuthority) throws URIException, NullPointerException(Code)(Java Doc)
public void setRawFragment(char[] escapedFragment) throws URIException(Code)(Java Doc)
public void setRawPath(char[] escapedPath) throws URIException(Code)(Java Doc)
public void setRawQuery(char[] escapedQuery) throws URIException(Code)(Java Doc)
protected void setURI()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
protected boolean validate(char[] component, BitSet generous)(Code)(Java Doc)
protected boolean validate(char[] component, int soffset, int eoffset, BitSet generous)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.