Uri Encode the value. @param value to encode. @return the encoded value.
(String value)
| 157 | * @return the encoded value. |
| 158 | */ |
| 159 | private String encodeLiteral(String value) { |
| 160 | return this.encodeLiteral() ? UriUtils.encode(value, this.charset, true) : value; |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Variable names contained in the template. |
no test coverage detected