Package com.amihaiemil.eoyaml
Interface YamlPrinter
-
public interface YamlPrinterYAML Printer.- Since:
- 4.3.1
- Version:
- $Id: 560dee29ca1faa319d79dee1ae1ebb5cabc4eff2 $
- Author:
- Mihai Andronache (amihaiemil@gmail.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprint(YamlNode node)Print a YAML Node.
-
-
-
Method Detail
-
print
void print(YamlNode node) throws IOException
Print a YAML Node. YamlNode is the base interface for all types of YAML.- Parameters:
node- YAML node to print.- Throws:
IOException- If any I/O problem is encountered. It will also throw an exception if you call this method more than once (because the underlying stream is closed at the end of the printing).
-
-