Interface UriMatchInfo

All Known Subinterfaces:
UriRouteMatch<T,R>
All Known Implementing Classes:
UriMatchTemplate.DefaultUriMatchInfo

public interface UriMatchInfo
The result of a call to UriMatcher.match(java.net.URI).
Since:
1.0
Author:
Graeme Rocher
  • Method Details

    • getUri

      String getUri()
      Returns:
      The matched URI
    • getVariableValues

      Map<String,Object> getVariableValues()
      Returns:
      The variable values following a successful match
    • getVariables

      List<UriMatchVariable> getVariables()
      Returns:
      The list of template variables
    • getVariableMap

      Map<String,UriMatchVariable> getVariableMap()
      Returns:
      A map of the variables.