Example usage for com.google.gson JsonPrimitive deepCopy

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

Introduction

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

Prototype

@Override
public JsonPrimitive deepCopy() 

Source Link

Document

Returns the same value as primitives are immutable.

Usage

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