Uses of Class
com.damnhandy.uri.template.MalformedUriTemplateException
-
Packages that use MalformedUriTemplateException Package Description com.damnhandy.uri.template Handy URI Templatescom.damnhandy.uri.template.impl -
-
Uses of MalformedUriTemplateException in com.damnhandy.uri.template
Methods in com.damnhandy.uri.template that throw MalformedUriTemplateException Modifier and Type Method Description UriTemplate
UriTemplateBuilder. build()
Generates aUriTemplate
instance from the builder.static UriTemplateBuilder
UriTemplate. buildFromTemplate(UriTemplate baseTemplate)
Creates a newUriTemplateBuilder
from a rootUriTemplate
.static UriTemplateBuilder
UriTemplate. buildFromTemplate(String template)
Creates a newUriTemplateBuilder
from the template string.static String
UriTemplate. expand(String templateString, Map<String,Object> values)
Expands the given template string using the variable replacements in the suppliedMap
.static String
UriTemplate. expandPartial(String templateString, Map<String,Object> values)
Expands the given template string using the variable replacements in the suppliedMap
.static UriTemplateBuilder
UriTemplate. fromTemplate(UriTemplate baseTemplate)
Deprecated.static UriTemplate
UriTemplate. fromTemplate(String templateString)
Creates a newUriTemplate
from the template string.protected void
UriTemplate. parseTemplateString()
Parse the URI template string into the template model.Constructors in com.damnhandy.uri.template that throw MalformedUriTemplateException Constructor Description Expression(String rawExpression, int startPosition)
Create a new Expression. -
Uses of MalformedUriTemplateException in com.damnhandy.uri.template.impl
Methods in com.damnhandy.uri.template.impl that throw MalformedUriTemplateException Modifier and Type Method Description LinkedList<UriTemplateComponent>
UriTemplateParser. scan(String templateString)
Scans the URI template looking for literal string components and expressions.
-