| Package | Description | 
|---|---|
| org.springframework.util | Miscellaneous utility classes, such as String manipulation utilities,
 a Log4J configurer, and a state holder for paged lists of objects. | 
| Modifier and Type | Method and Description | 
|---|---|
| RouteMatcher.Route | SimpleRouteMatcher. parseRoute(String route) | 
| RouteMatcher.Route | RouteMatcher. parseRoute(String routeValue)Return a parsed representation of the given route. | 
| Modifier and Type | Method and Description | 
|---|---|
| Comparator<String> | SimpleRouteMatcher. getPatternComparator(RouteMatcher.Route route) | 
| Comparator<String> | RouteMatcher. getPatternComparator(RouteMatcher.Route route)Given a route, return a  Comparatorsuitable for sorting patterns
 in order of explicitness for that route, so that more specific patterns
 come before more generic ones. | 
| boolean | SimpleRouteMatcher. match(String pattern,
     RouteMatcher.Route route) | 
| boolean | RouteMatcher. match(String pattern,
     RouteMatcher.Route route)Match the given route against the given pattern. | 
| Map<String,String> | SimpleRouteMatcher. matchAndExtract(String pattern,
               RouteMatcher.Route route) | 
| Map<String,String> | RouteMatcher. matchAndExtract(String pattern,
               RouteMatcher.Route route)Match the pattern to the route and extract template variables. |