Teks Bersambung
TextSerializers provide a convenient way to serialize and de-serialize Text instances. There are three applicable formats:
Kelas :javadoc:'TextSerializers' menyediakan tiga "TextSerializer untuk menserisalisasikan kepada sebuah perwakilan "String" atau deserializing kepada sebuah contoh "Text":
"LEGACY_FORMATTING_CODE"
"FORMATTING_CODE"
"JSON"
Teks Serializing
Untuk serialize sebuah objek "Text", hanya menggunakan metode :javadoc:'TextSerializer#serialize(Text)', menentukan sesuai objek "Text" sebagai argumen satu-satunya. Metode akan mengembalikan sebuah "String" mewakili objek "Text".
Deserialisasi untuk Teks
To deserialize a String
into its corresponding Text
object, simply use the
TextSerializer#deserialize(String) method, specifying the input String
as the only argument. If the
input is incorrectly formatted, a TextParseException will be thrown. Alternatively, use the
TextSerializer#deserializeUnchecked(String) method to deserialize without any exceptions. If there is an
error, the raw input will be returned in the form of a Text
object.