|
static String | encode (String value) |
|
static String | decode (String value) |
|
◆ decode()
static String org.turro.elephant.impl.util.SafeURLEncoder.decode |
( |
String |
value | ) |
|
|
static |
Definition at line 66 of file SafeURLEncoder.java.
67 for(
int i = map.length - 1; i >= 0; i--) {
68 value = value.replace(map[i][1], map[i][0]);
◆ encode()
static String org.turro.elephant.impl.util.SafeURLEncoder.encode |
( |
String |
value | ) |
|
|
static |
Definition at line 59 of file SafeURLEncoder.java.
60 for(
int i = 0; i < map.length; i++) {
61 value = value.replace(map[i][0], map[i][1]);
The documentation for this class was generated from the following file: