All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.interfaces.IFastJsonProvider Maven / Gradle / Ivy

package com.fastchar.interfaces;

import java.lang.reflect.Type;

public interface IFastJsonProvider {

    String toJson(Object value);

     T fromJson(String json, Class targetClass);

     T fromJson(String json, Type targetType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy