
Static Public Member Functions | |
| static String | encode (@NotNull final String str) |
| static String | decode (@NotNull final String str) |
Utility class to encode arbitrary Strings to fit in a single text line. For any string s, encode(s) is a string that does not contain or
characters and s.equals(decode(encode(s))) holds.
Definition at line 35 of file Codec.java.
| static String com.realtime.crossfire.jxclient.settings.Codec.decode | ( | @NotNull final String | str | ) | [static] |
Decodes a string which was encoded by encode(String).
| str | the string to be decoded |
Definition at line 108 of file Codec.java.
| static String com.realtime.crossfire.jxclient.settings.Codec.encode | ( | @NotNull final String | str | ) | [static] |
Encodes a string to make it fit into one line.
| str | the string to be encoded |
Definition at line 92 of file Codec.java.
1.6.3