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

com.dslplatform.json.runtime.FormatConverter Maven / Gradle / Ivy

Go to download

DSL Platform compatible Java JSON library (https://dsl-platform.com)

There is a newer version: 1.8.5
Show newest version
package com.dslplatform.json.runtime;

import com.dslplatform.json.JsonReader;
import com.dslplatform.json.JsonWriter;

import java.io.IOException;

public interface FormatConverter extends JsonWriter.WriteObject, JsonReader.ReadObject {
	T readContent(JsonReader reader) throws IOException;
	boolean writeContentMinimal(JsonWriter writer, T instance);
	void writeContentFull(JsonWriter writer, T instance);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy