Generated by
JDiff

Class org.springframework.web.util.UriComponents

Documentation changed from old to new.

Changed from non-abstract to abstract. Change from final to non-final.

Added Constructors
UriComponents(String, String)  
 

Removed Methods
boolean equals(Object)  
int hashCode()  
 

Added Methods
String getSchemeSpecificPart() Returns the scheme specific part.
 

Changed Methods
String getFragment() Documentation changed from old to new.
Change from non-final to final.
Returns the fragment.
String getHost() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns the host.
String getPath() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns the path.
List<String> getPathSegments() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns the list of path segments.
int getPort() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns the port.
String getQuery() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns the query.
MultiValueMap<String, String> getQueryParams() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns the map of query parameters.
String getScheme() Documentation changed from old to new.
Change from non-final to final.
Returns the scheme.
String getUserInfo() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns the user info.
UriComponents normalize() Documentation changed from old to new.
Changed from non-abstract to abstract.
Normalize the path removing sequences like "path/..".
String toString() Change from non-final to final.
 
URI toUri() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns a {@code URI} from this {@code UriComponents} instance.
String toUriString() Documentation changed from old to new.
Changed from non-abstract to abstract.
Returns a URI string from this {@code UriComponents} instance.
UriComponents encode(String) Documentation changed from old to new.
Changed from non-abstract to abstract.
Encode all URI components using their specific encoding rules, and returns the result as a new {@code UriComponents} instance.
UriComponents encode() Documentation changed from old to new.
Change from non-final to final.
Encode all URI components using their specific encoding rules, and returns the result as a new {@code UriComponents} instance.
UriComponents expand(Object[]) Documentation changed from old to new.
Change from non-final to final.
Replaces all URI template variables with the values from a given array.
UriComponents expand(Map<String, ?>) Documentation changed from old to new.
Change from non-final to final.
Replaces all URI template variables with the values from a given map.