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

io.polaris.core.json.JsonSerializer Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.json;

import io.polaris.core.lang.TypeRef;

import java.lang.reflect.Type;

/**
 * @author Qt
 * @since 1.8
 */
public interface JsonSerializer {

	String serialize(Object value);

	 T deserialize(String json, Type type);

	default  T deserialize(String json, Class type) {
		return deserialize(json, (Type) type);
	}

	default  T deserialize(String json, TypeRef type) {
		return deserialize(json, type.getType());
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy