Example usage for com.google.gson JsonArray deepCopy

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

Introduction

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

Prototype

@Override
public JsonArray deepCopy() 

Source Link

Document

Creates a deep copy of this element and all its children

Usage

From source file:com.balajeetm.mystique.util.gson.lever.JsonLever.java

License:Open Source License

/**
 * Deep clone.//from w  ww  .j  a  va 2  s. com
 *
 * @param source the source json
 * @return the deep clone of the json
 */
public JsonArray deepClone(JsonArray source) {
    return isNotNull(source) ? source.deepCopy() : source;
}