Java org.springframework.web.util UriTemplate fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.util UriTemplate fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.util UriTemplate.

The text is from its open source code.

Constructor

UriTemplate(String uriTemplate)
Construct a new UriTemplate with the given URI String.

Method

URIexpand(Map uriVariables)
Given the Map of variables, expands this template into a URI.
URIexpand(Object... uriVariableValues)
Given an array of variables, expand this template into a full URI.
ListgetVariableNames()
Return the names of the variables in the template, in order.
Mapmatch(String uri)
Match the given URI to a map of variable values.
booleanmatches(@Nullable String uri)
Indicate whether the given URI matches this template.
StringtoString()