public interface TextSerializer
| Modifier and Type | Method and Description |
|---|---|
<T> T |
convert(Object o,
Class<T> clazz)
Convert an object to another format by serializing and deserializing it.
|
<T> T |
read(Reader from,
Class<T> clazz)
Parse a Value to the specific class.
|
<T> T |
read(String from,
Class<T> clazz)
Parse a String to the specific class.
|
void |
write(Writer to,
Object o)
Serialize an object to a writer.
|
String |
writeToString(Object o)
Stream Value to String.
|
Copyright © 2015. All rights reserved.