Example usage for com.google.gson JsonParser interface-usage

List of usage examples for com.google.gson JsonParser interface-usage

Introduction

In this page you can find the example usage for com.google.gson JsonParser interface-usage.

Usage

From source file com.github.mjeanroy.dbunit.json.GsonParser.java

/**
 * Json Parser using Google Gson as internal implementation.
 */
public class GsonParser implements JsonParser {

    /**

From source file com.torodb.kvdocument.conversion.json.GsonJsonParser.java

@SuppressWarnings("unchecked")
public class GsonJsonParser implements JsonParser {

    private static Gson gson = new Gson();

    private static final MapToKvValueConverter converter = new MapToKvValueConverter();

From source file org.springframework.boot.json.GsonJsonParser.java

/**
 * Thin wrapper to adapt {@link Gson} to a {@link JsonParser}.
 *
 * @author Dave Syer
 * @since 1.2.0
 * @see JsonParserFactory