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

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

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

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

import java.io.IOException;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy