Package com.amihaiemil.eoyaml
Interface YamlStreamBuilder
-
public interface YamlStreamBuilderBuilder of YamlStream. Implementations should be immutable and thread-safe.- Since:
- 3.1.1
- Version:
- $Id: e0fe348daa925a06849bf7c61c1845bb9bb8953a $
- Author:
- Mihai Andronache (amihaiemil@gmail.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description YamlStreamBuilderadd(YamlNode document)Add a YAML to the Stream.YamlStreambuild()Build the YamlStream.
-
-
-
Method Detail
-
add
YamlStreamBuilder add(YamlNode document)
Add a YAML to the Stream.- Parameters:
document- YamlNode- Returns:
- This builder
-
build
YamlStream build()
Build the YamlStream.- Returns:
- Built YamlStream.
-
-