/** {@inheritDoc} */ public boolean resolve(String expanded, Map<Variable, Object> values) { values.put(this._var, URICoder.decode(expanded)); return true; }
/** * {@inheritDoc} * * @throws UnsupportedEncodingException */ public String expand(Parameters variables) throws UnsupportedEncodingException { return URICoder.encode(this._var.value(variables)); }