Uses of Class
com.damnhandy.uri.template.UriTemplate
-
Packages that use UriTemplate Package Description com.damnhandy.uri.template Handy URI Templatescom.damnhandy.uri.template.jackson.datatype These classes allow theUriTemplate
class to better integrate with the Jackson JSON framework. -
-
Uses of UriTemplate in com.damnhandy.uri.template
Methods in com.damnhandy.uri.template that return UriTemplate Modifier and Type Method Description UriTemplate
UriTemplateBuilder. build()
Generates aUriTemplate
instance from the builder.static UriTemplate
UriTemplate. fromTemplate(String templateString)
Creates a newUriTemplate
from the template string.UriTemplate
UriTemplate. set(String variableName, Object value)
Sets a value on the URI template expression variable.UriTemplate
UriTemplate. set(String variableName, Date value)
Sets a Date value into the list of variable substitutions using the defaultDateFormat
.UriTemplate
UriTemplate. set(Map<String,Object> values)
Adds the name/value pairs in the suppliedMap
to the collection of values within this URI template instance.UriTemplate
UriTemplate. withDefaultDateFormat(String dateFormatString)
UriTemplate
UriTemplate. withDefaultDateFormat(DateFormat dateFormat)
Deprecated.replaced bywithDefaultDateFormat
Methods in com.damnhandy.uri.template with parameters of type UriTemplate Modifier and Type Method Description static UriTemplateBuilder
UriTemplate. buildFromTemplate(UriTemplate baseTemplate)
Creates a newUriTemplateBuilder
from a rootUriTemplate
.static UriTemplateBuilder
UriTemplate. fromTemplate(UriTemplate baseTemplate)
Deprecated.UriTemplateBuilder
UriTemplateBuilder. template(UriTemplate... template)
Parses the template and appends the parsed components to the builder. -
Uses of UriTemplate in com.damnhandy.uri.template.jackson.datatype
Methods in com.damnhandy.uri.template.jackson.datatype that return UriTemplate Modifier and Type Method Description UriTemplate
UriTemplateDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser parser, com.fasterxml.jackson.databind.DeserializationContext ctxt)
Methods in com.damnhandy.uri.template.jackson.datatype with parameters of type UriTemplate Modifier and Type Method Description void
UriTemplateSerializer. serialize(UriTemplate value, com.fasterxml.jackson.core.JsonGenerator jgen, com.fasterxml.jackson.databind.SerializerProvider provider)
-