Example usage for com.google.gson JsonElement deepCopy

List of usage examples for com.google.gson JsonElement deepCopy

Introduction

In this page you can find the example usage for com.google.gson JsonElement deepCopy.

Prototype

public abstract JsonElement deepCopy();

Source Link

Document

Returns a deep copy of this element.

Usage

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;
}