abfab3d.shapejs.JSONParsing.java Source code

Java tutorial

Introduction

Here is the source code for abfab3d.shapejs.JSONParsing.java

Source

/*****************************************************************************
 *                        Shapeways, Inc Copyright (c) 2016
 *                               Java Source
 *
 * This source is licensed under the GNU LGPL v2.1
 * Please read http://www.gnu.org/copyleft/lgpl.html for more information
 *
 * This software comes with the standard NO WARRANTY disclaimer for any
 * purpose. Use it at your own risk. If there's a problem you get to fix it.
 *
 ****************************************************************************/
package abfab3d.shapejs;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

/**
 * Common JSON parsing utils
 *
 * @author Alan Hudson
 */
public class JSONParsing {
    public static Gson getJSONParser() {
        return new GsonBuilder().serializeSpecialFloatingPointValues().create();
    }
}