SerializedString
public interface SerializableString
SerializedString
Modifier and Type | Method | Description |
---|---|---|
char[] |
asQuotedChars() |
Returns JSON quoted form of the String, as character array.
|
byte[] |
asQuotedUTF8() |
Returns UTF-8 encoded version of JSON-quoted String.
|
byte[] |
asUnquotedUTF8() |
Returns UTF-8 encoded version of unquoted String.
|
int |
charLength() |
Returns length of the (unquoted) String as characters.
|
java.lang.String |
getValue() |
Returns unquoted String that this object represents (and offers
serialized forms for)
|
java.lang.String getValue()
int charLength()
getValue().length();
char[] asQuotedChars()
byte[] asUnquotedUTF8()
getValue().getBytes("UTF-8");
byte[] asQuotedUTF8()
new String(asQuotedChars()).getBytes("UTF-8");