public class Composer
extends java.lang.Object
Corresponds to the 'Compose' step as described in chapter 3.1 of the YAML Specification.
Constructor and Description |
---|
Composer(Parser parser,
Resolver resolver) |
Modifier and Type | Method and Description |
---|---|
boolean |
checkNode()
Checks if further documents are available.
|
Node |
getNode()
Reads and composes the next document.
|
Node |
getSingleNode()
Reads a document from a source that contains only one document.
|
public boolean checkNode()
true
if there is at least one more document.public Node getNode()
null
if no more
documents are available.public Node getSingleNode()
If the stream contains more than one document an exception is thrown.
null
if no document
is available.