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

com.github.fluentxml4j.serialize.SerializeNode Maven / Gradle / Ivy

package com.github.fluentxml4j.serialize;

import java.io.File;
import java.io.OutputStream;
import java.io.Writer;

public interface SerializeNode
{
	SerializeWithTransformerNode withSerializer(SerializerConfigurer serializerConfigurer);

	void to(OutputStream out);

	void to(Writer out);

	void to(File out);

	byte[] toBytes();

	String toString();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy