Package | Description |
---|---|
org.springframework.web.util.pattern |
Dedicated support for matching HTTP request paths.
|
Modifier and Type | Field and Description |
---|---|
static java.util.Comparator<PathPattern> |
PathPattern.SPECIFICITY_COMPARATOR
Comparator that sorts patterns by specificity as follows:
Null instances are last.
|
Modifier and Type | Method and Description |
---|---|
PathPattern |
PathPattern.combine(PathPattern pattern2string)
Combine this pattern with another.
|
PathPattern |
PathPatternParser.parse(java.lang.String pathPattern)
Process the path pattern content, a character at a time, breaking it into
path elements around separator boundaries and verifying the structure at each
stage.
|
Modifier and Type | Method and Description |
---|---|
PathPattern |
PathPattern.combine(PathPattern pattern2string)
Combine this pattern with another.
|
int |
PathPattern.compareTo(PathPattern otherPattern)
Compare this pattern with a supplied pattern: return -1,0,+1 if this pattern
is more specific, the same or less specific than the supplied pattern.
|