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