1 package guru.mikelue.jdut.yaml.node; 2 3 /** 4 * Defines the base interface for nodes of YAML. 5 */ 6 public interface NodeBase { 7 /** 8 * Gets type of node. 9 * 10 * @return The type of node 11 */ 12 public NodeType getNodeType(); 13 }