blob: 191c7d73af34e5f4b2d3e0135c70ac6112f7554e [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.nodes;
import org.yaml.snakeyaml.error.Mark;
/**
* @see <a href="http://pyyaml.org/wiki/PyYAML">PyYAML</a> for more information
*/
public class ScalarNode extends Node {
private Character style;
private String value;
public ScalarNode(String tag, String value, Mark startMark, Mark endMark, Character style) {
super(tag, startMark, endMark);
if (value == null) {
throw new NullPointerException("value in a Node is required.");
}
this.value = value;
this.style = style;
}
public Character getStyle() {
return style;
}
@Override
public NodeId getNodeId() {
return NodeId.scalar;
}
public String getValue() {
return value;
}
public String toString() {
return "<" + this.getClass().getName() + " (tag=" + getTag() + ", value=" + getValue()
+ ")>";
}
}