| Package | Description |
|---|---|
| com.damnhandy.uri.template |
Handy URI Templates
|
| com.damnhandy.uri.template.jackson.datatype |
These classes allow the
UriTemplate class to
better integrate with the Jackson JSON framework. |
| Modifier and Type | Method and Description |
|---|---|
UriTemplate |
UriTemplateBuilder.build()
Generates a
UriTemplate instance from the builder. |
static UriTemplate |
UriTemplate.fromTemplate(String templateString)
Creates a new
UriTemplate from the template. |
UriTemplate |
UriTemplate.set(Map<String,Object> values)
Adds the name/value pairs in the supplied
Map to the collection
of values within this URI template instance. |
UriTemplate |
UriTemplate.set(String variableName,
Date value)
Sets a Date value into the list of variable substitutions using the
default
DateFormat. |
UriTemplate |
UriTemplate.set(String variableName,
Object value)
Sets a value on the URI template expression variable.
|
UriTemplate |
UriTemplate.withDefaultDateFormat(DateFormat dateFormat)
Deprecated.
replaced by
withDefaultDateFormat |
UriTemplate |
UriTemplate.withDefaultDateFormat(String dateFormatString) |
| Modifier and Type | Method and Description |
|---|---|
static UriTemplateBuilder |
UriTemplate.buildFromTemplate(UriTemplate baseTemplate)
Creates a new
UriTemplateBuilder from a root UriTemplate. |
static UriTemplateBuilder |
UriTemplate.fromTemplate(UriTemplate baseTemplate)
Creates a new
UriTemplate from a root UriTemplate. |
UriTemplateBuilder |
UriTemplateBuilder.template(UriTemplate... template)
Parses the template and appends the parsed components
to the builder.
|
| Modifier and Type | Method and Description |
|---|---|
UriTemplate |
UriTemplateDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser parser,
com.fasterxml.jackson.databind.DeserializationContext ctxt) |
| Modifier and Type | Method and Description |
|---|---|
void |
UriTemplateSerializer.serialize(UriTemplate value,
com.fasterxml.jackson.core.JsonGenerator jgen,
com.fasterxml.jackson.databind.SerializerProvider provider) |
Copyright © 2012-04-30–2016 Ryan J. McDonough. All rights reserved.