Kuangcp/JavaBase

View on GitHub
class/src/main/java/com/github/kuangcp/serialize/json/speed/JsonTool.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.github.kuangcp.serialize.json.speed;

import com.fasterxml.jackson.core.JsonProcessingException;
import java.io.IOException;
import java.util.List;

/**
 * Created by https://github.com/kuangcp
 *
 * @author kuangcp
 */
public interface JsonTool<T> {

  T fromJSON(String json, Class<T> target) throws IOException;

  String toJSON(List<T> dataList) throws JsonProcessingException;

  String getName();
}