public interface ObjectSerializer
Modifier and Type | Method and Description |
---|---|
<T> T |
readValue(File file,
Class<T> valueType)
Deserializes an object that has been previously converted into a textual format
|
<T> T |
readValue(InputStream inputStream,
Class<T> valueType)
Deserializes an object that has been previously converted into a textual format
|
<T> T |
readValue(String content,
Class<T> valueType)
Deserializes an object that has been previously converted into a textual format
|
String |
writeValueAsString(Object object)
Converts an object into a textual representation, preserving all the object properties.
|
void |
writeValueOnFile(Object object,
String filePath)
Converts an object into a textual representation, preserving all the object properties,
and write this String into a file.
|
void |
writeValueOnGzipFile(Object object,
String filePath)
Converts an object into a textual representation, preserving all the object properties,
and write this String into a GZip file.
|
String writeValueAsString(Object object) throws IOException
object
- the object to be serializedobject
IOException
void writeValueOnFile(Object object, String filePath) throws IOException
object
- the object to be serializedfilePath
- the path of the file where object
must be serializedIOException
void writeValueOnGzipFile(Object object, String filePath) throws IOException
object
- the object to be serializedfilePath
- the path of the file where object
must be serializedIOException
<T> T readValue(String content, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonParseException, com.fasterxml.jackson.databind.JsonMappingException
content
- the object in its textual formatvalueType
- the class of the object to be deserializedIOException
com.fasterxml.jackson.core.JsonParseException
com.fasterxml.jackson.databind.JsonMappingException
<T> T readValue(File file, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonParseException, com.fasterxml.jackson.databind.JsonMappingException
file
- the file from which the serialized format must be readvalueType
- the class of the object to be deserializedIOException
com.fasterxml.jackson.core.JsonParseException
com.fasterxml.jackson.databind.JsonMappingException
<T> T readValue(InputStream inputStream, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonParseException, com.fasterxml.jackson.databind.JsonMappingException
inputStream
- the input stream from which the serialized format must be readvalueType
- the class of the object to be deserializedIOException
com.fasterxml.jackson.core.JsonParseException
com.fasterxml.jackson.databind.JsonMappingException
Copyright © 2018 Semantic Analytics Group @ Uniroma2. All rights reserved.