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

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

package com.github.fluentxml4j.serialize;

import javax.xml.stream.XMLEventWriter;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Result;
import java.io.File;
import java.io.OutputStream;
import java.io.Writer;

public interface SerializeWithTransformerNode
{
	void to(OutputStream out);

	void to(Writer out);

	String toString();

	byte[] toBytes();

	void to(XMLEventWriter out);

	void to(XMLStreamWriter out);

	void to(Result out);

	void to(File file);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy