Changed Methods |
UriComponentsBuilder fragment(String )
|
Documentation changed from old to new. |
Sets the URI fragment. |
UriComponentsBuilder fromHttpUrl(String )
|
Documentation changed from old to new. |
Creates a new {@code UriComponents} object from the string HTTP URL. |
UriComponentsBuilder fromUriString(String )
|
Documentation changed from old to new. |
Returns a builder that is initialized with the given URI string. |
UriComponentsBuilder host(String )
|
Documentation changed from old to new. |
Sets the URI host. |
UriComponentsBuilder path(String )
|
Documentation changed from old to new. |
Appends the given path to the existing path of this builder. |
UriComponentsBuilder query(String )
|
Documentation changed from old to new. |
Appends the given query to the existing query of this builder. |
UriComponentsBuilder queryParam(String, Object[])
|
Documentation changed from old to new. |
Appends the given query parameter to the existing query parameters. |
UriComponentsBuilder replacePath(String )
|
Documentation changed from old to new. |
Sets the path of this builder overriding all existing path and path segment values. |
UriComponentsBuilder replaceQuery(String )
|
Documentation changed from old to new. |
Sets the query of this builder overriding all existing query parameters. |
UriComponentsBuilder replaceQueryParam(String, Object[])
|
Documentation changed from old to new. |
Sets the query parameter values overriding all existing query values for
the same parameter. |
UriComponentsBuilder scheme(String )
|
Documentation changed from old to new. |
Sets the URI scheme. |
UriComponentsBuilder userInfo(String )
|
Documentation changed from old to new. |
Sets the URI user info. |
UriComponents build(boolean )
|
Documentation changed from old to new. |
Builds a {@code UriComponents} instance from the various components
contained in this builder. |
UriComponents buildAndExpand(Object[] )
|
Documentation changed from old to new. |
Builds a {@code UriComponents} instance and replaces URI template variables
with the values from an array. |
UriComponents buildAndExpand(Map<String, ?>)
|
Documentation changed from old to new. |
Builds a {@code UriComponents} instance and replaces URI template variables
with the values from a map. |