public interface StringEncoder<O>
| Modifier and Type | Method and Description |
|---|---|
O |
decode(java.lang.String string)
Decodes a string back to it's initial representation.
|
java.lang.String |
encode(O object)
Encodes an object to another representation.
|
java.lang.String encode(O object)
object - the object to encode.O decode(java.lang.String string)
string - the string to decode.