Package io.micronaut.http.uri
Interface UriMatcher
- All Known Subinterfaces:
- UriRouteInfo<T,- R> 
- All Known Implementing Classes:
- DefaultUrlRouteInfo,- UriMatchTemplate,- UriTemplateMatcher,- UriTypeMatchTemplate
public interface UriMatcher
A URI matcher is capable of matching a URI and producing a UriMatchInfo.
- Since:
- 1.0
- Author:
- Graeme Rocher
- 
Method SummaryModifier and TypeMethodDescriptionOptional<? extends UriMatchInfo>Match the given URI string.default Optional<? extends UriMatchInfo>Match the givenURIobject.
- 
Method Details- 
matchMatch the givenURIobject.- Parameters:
- uri- The URI
- Returns:
- True if it matches
 
- 
matchMatch the given URI string.- Parameters:
- uri- The uRI
- Returns:
- True if it matches
 
 
-