List of usage examples for com.google.gson JsonPrimitive deepCopy
@Override
public JsonPrimitive deepCopy()
From source file:com.balajeetm.mystique.util.gson.lever.JsonLever.java
License:Open Source License
/** * Deep clone./*from w w w .j a va 2 s .co m*/ * * @param source the source json * @return the deep clone of the json */ public JsonPrimitive deepClone(JsonPrimitive source) { return isNotNull(source) ? source.deepCopy() : source; }