All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.silentgo.json.serializer.JSONEntitySerializer Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
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