示例#1
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#toString()
  */
 public String toString() {
   return uri.toString();
 }
示例#2
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#toUrl()
  */
 public String toUrl() {
   return uri.toUrl();
 }
示例#3
0
 /**
  * @return
  * @throws URISyntaxException
  * @see com.ning.http.client.uri.Uri#toJavaNetURI()
  */
 public URI toJavaNetURI() throws URISyntaxException {
   return uri.toJavaNetURI();
 }
示例#4
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#toRelativeUrl()
  */
 public String toRelativeUrl() {
   return uri.toRelativeUrl();
 }
示例#5
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#getUserInfo()
  */
 public String getUserInfo() {
   return uri.getUserInfo();
 }
示例#6
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#hashCode()
  */
 public int hashCode() {
   return uri.hashCode();
 }
示例#7
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#getQuery()
  */
 public String getQuery() {
   return uri.getQuery();
 }
示例#8
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#getScheme()
  */
 public String getScheme() {
   return uri.getScheme();
 }
示例#9
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#getPort()
  */
 public int getPort() {
   return uri.getPort();
 }
示例#10
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#getPath()
  */
 public String getPath() {
   return uri.getPath();
 }
示例#11
0
 /**
  * @return
  * @see com.ning.http.client.uri.Uri#getHost()
  */
 public String getHost() {
   return uri.getHost();
 }
示例#12
0
 /**
  * @param newScheme
  * @return
  * @see com.ning.http.client.uri.Uri#withNewScheme(java.lang.String)
  */
 public Uri withNewScheme(String newScheme) {
   return uri.withNewScheme(newScheme);
 }
示例#13
0
 /**
  * @param newQuery
  * @return
  * @see com.ning.http.client.uri.Uri#withNewQuery(java.lang.String)
  */
 public Uri withNewQuery(String newQuery) {
   return uri.withNewQuery(newQuery);
 }