public class UriPattern extends Object
| Modifier and Type | Field and Description |
|---|---|
static UriPattern |
EMPTY
The empty URI pattern that matches the null or empty URI path
|
| Modifier | Constructor and Description |
|---|---|
protected |
UriPattern()
Construct an empty pattern.
|
|
UriPattern(Pattern regexPattern)
Construct a new URI pattern.
|
|
UriPattern(Pattern regexPattern,
int[] groupIndexes)
Construct a new URI pattern.
|
|
UriPattern(String regex)
Construct a new URI pattern.
|
|
UriPattern(String regex,
int[] groupIndexes)
Construct a new URI pattern.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
int[] |
getGroupIndexes()
Get the group indexes.
|
String |
getRegex()
Get the regular expression.
|
int |
hashCode() |
MatchResult |
match(CharSequence uri)
Match a URI against the pattern.
|
boolean |
match(CharSequence uri,
List<String> groupValues)
Match a URI against the pattern.
|
boolean |
match(CharSequence uri,
List<String> groupNames,
Map<String,String> groupValues)
Match a URI against the pattern.
|
String |
toString() |
public static final UriPattern EMPTY
protected UriPattern()
public UriPattern(String regex)
regex - the regular expression. If the expression is null or an
empty string then the pattern will only match a null or empty
URI path.PatternSyntaxException - if the
regular expression could not be compiledpublic UriPattern(String regex, int[] groupIndexes)
regex - the regular expression. If the expression is null or an
empty string then the pattern will only match a null or empty
URI path.groupIndexes - the array of group indexes to capturing groups.PatternSyntaxException - if the
regular expression could not be compiledpublic UriPattern(Pattern regexPattern)
regexPattern - the regular expression patternIllegalArgumentException - if the regexPattern is null.public UriPattern(Pattern regexPattern, int[] groupIndexes)
regexPattern - the regular expression patterngroupIndexes - the array of group indexes to capturing groups.IllegalArgumentException - if the regexPattern is null.public final String getRegex()
public final int[] getGroupIndexes()
public final MatchResult match(CharSequence uri)
uri - the uri to match against the template.public final boolean match(CharSequence uri, List<String> groupValues)
If the URI matches against the pattern then the capturing group values (if any) will be added to a list passed in as parameter.
uri - the uri to match against the template.groupValues - the list to add the values of a pattern's
capturing groups if matching is successful. The values are added
in the same order as the pattern's capturing groups. The list
is cleared before values are added.IllegalArgumentException - if the uri or
capturingGroupValues is null.public final boolean match(CharSequence uri, List<String> groupNames, Map<String,String> groupValues)
If the URI matches against the pattern then the capturing group values (if any) will be added to a map passed in as parameter.
uri - the uri to match against the template.groupNames - the list names associated with a pattern's
capturing groups. The names MUST be in the same order as the
pattern's capturing groups and the size MUST be equal to or
less than the number of capturing groups.groupValues - the map to add the values of a pattern's
capturing groups if matching is successful. A values is put
into the map using the group name associated with the
capturing group. The map is cleared before values are added.IllegalArgumentException - if the uri or
capturingGroupValues is null.Copyright © 2016. All rights reserved.