Uses of Class
com.damnhandy.uri.template.UriTemplateComponent
-
Packages that use UriTemplateComponent Package Description com.damnhandy.uri.template Handy URI Templatescom.damnhandy.uri.template.impl -
-
Uses of UriTemplateComponent in com.damnhandy.uri.template
Subclasses of UriTemplateComponent in com.damnhandy.uri.template Modifier and Type Class Description class
Expression
An Expression represents the text between '{' and '}', including the enclosing braces, as defined in Section 2 of RFC6570.class
Literal
Represents the non-expression parts of a URI TemplateMethods in com.damnhandy.uri.template that return UriTemplateComponent Modifier and Type Method Description UriTemplateComponent[]
UriTemplateBuilder. getComponents()
Returns an array of the components in the Builder.Methods in com.damnhandy.uri.template that return types with arguments of type UriTemplateComponent Modifier and Type Method Description Collection<UriTemplateComponent>
UriTemplate. getComponents()
Returns the collection ofUriTemplateComponent
instances found in this template.Constructor parameters in com.damnhandy.uri.template with type arguments of type UriTemplateComponent Constructor Description UriTemplate(LinkedList<UriTemplateComponent> components)
Create a new UriTemplate. -
Uses of UriTemplateComponent in com.damnhandy.uri.template.impl
Methods in com.damnhandy.uri.template.impl that return types with arguments of type UriTemplateComponent Modifier and Type Method Description LinkedList<UriTemplateComponent>
UriTemplateParser. scan(String templateString)
Scans the URI template looking for literal string components and expressions.
-