![JAR search and dependency download from the Maven repository](/logo.png)
com.silentgo.json.serializer.JSONEntitySerializer Maven / Gradle / Ivy
package com.silentgo.json.serializer;
import com.silentgo.json.JSONGlobalConfig;
import com.silentgo.json.model.JSONEntity;
/**
* Project : json
* Package : com.silentgo.json.serializer
*
* @author teddyzhu
*
* Created by teddyzhu on 2017/1/20.
*/
public class JSONEntitySerializer implements Serializer {
@Override
public String serialize(Object object) {
if (object instanceof JSONEntity) {
return ((JSONEntity) object).getString();
} else {
return JSONGlobalConfig.replaceNullWithEmptyString ? "\"\"" : SerializerBuilder.NULL;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy