public class JacksonSerializerWrapper extends Object implements ObjectSerializer
Constructor and Description |
---|
JacksonSerializerWrapper() |
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.
|
public <T> T readValue(String content, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonParseException, com.fasterxml.jackson.databind.JsonMappingException
ObjectSerializer
readValue
in interface ObjectSerializer
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
public <T> T readValue(File file, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonParseException, com.fasterxml.jackson.databind.JsonMappingException
ObjectSerializer
readValue
in interface ObjectSerializer
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
public <T> T readValue(InputStream inputStream, Class<T> valueType) throws IOException, com.fasterxml.jackson.core.JsonParseException, com.fasterxml.jackson.databind.JsonMappingException
ObjectSerializer
readValue
in interface ObjectSerializer
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
public String writeValueAsString(Object object) throws com.fasterxml.jackson.core.JsonProcessingException
ObjectSerializer
writeValueAsString
in interface ObjectSerializer
object
- the object to be serializedobject
com.fasterxml.jackson.core.JsonProcessingException
public void writeValueOnFile(Object object, String filePath) throws IOException
ObjectSerializer
writeValueOnFile
in interface ObjectSerializer
object
- the object to be serializedfilePath
- the path of the file where object
must be serializedIOException
public void writeValueOnGzipFile(Object object, String filePath) throws IOException
ObjectSerializer
writeValueOnGzipFile
in interface ObjectSerializer
object
- the object to be serializedfilePath
- the path of the file where object
must be serializedIOException
Copyright © 2018 Semantic Analytics Group @ Uniroma2. All rights reserved.