|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.atmosphere.util.uri.UriTemplateParser
public class UriTemplateParser
A URI template parser that parses JAX-RS specific URI templates.
| Constructor Summary | |
|---|---|
UriTemplateParser(String template)
Parse a template. |
|
| Method Summary | |
|---|---|
protected String |
encodeLiteralCharacters(String literalCharacters)
Encode literal characters of a template. |
List<Integer> |
getGroupCounts()
Get the capturing group counts for each template variable. |
int[] |
getGroupIndexes()
Get the group indexes to capturing groups. |
List<String> |
getNames()
Get the list of template names. |
Map<String,Pattern> |
getNameToPattern()
Get the map of template names to patterns. |
String |
getNormalizedTemplate()
Get the normalized template. |
int |
getNumberOfExplicitRegexes()
Get the number of explicit regular expressions. |
int |
getNumberOfLiteralCharacters()
Get the number of literal characters. |
Pattern |
getPattern()
Get the pattern. |
String |
getTemplate()
Get the template. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public UriTemplateParser(String template)
template - the template.
IllegalArgumentException - if the template is null, an empty string
or does not conform to a JAX-RS URI template.| Method Detail |
|---|
public final String getTemplate()
public final Pattern getPattern()
public final String getNormalizedTemplate()
A normalized template is a template without any explicit regular expressions.
public final Map<String,Pattern> getNameToPattern()
public final List<String> getNames()
public final List<Integer> getGroupCounts()
public final int[] getGroupIndexes()
Any nested capturing groups will be ignored and the the group index will refer to the top-level capturing groups associated with the templates variables.
public final int getNumberOfExplicitRegexes()
public final int getNumberOfLiteralCharacters()
protected String encodeLiteralCharacters(String literalCharacters)
literalCharacters - the literal characters
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||