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

com.decathlon.tzatziki.utils.MapperDelegate Maven / Gradle / Ivy

The newest version!
package com.decathlon.tzatziki.utils;

import java.lang.reflect.Type;
import java.util.List;

public interface MapperDelegate {

     E read(String content);

     List readAsAListOf(String content, Class clazz);

     E read(String content, Class clazz);

     E read(String content, Type type);

    String toJson(Object object);

    String toNonDefaultJson(Object object);

    String toYaml(Object object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy