
com.amihaiemil.eoyaml.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eo-yaml Show documentation
Show all versions of eo-yaml Show documentation
YAML for Java 8 and above. Very similar to the JSON-P api.
package com.amihaiemil.eoyaml;
/**
* The class is for defining the type of {@link YamlNode}.
*/
public enum Node {
/**
* Type of {@link Scalar}.
*/
SCALAR,
/**
* Type of {@link YamlMapping}.
*/
MAPPING,
/**
* Type of {@link YamlStream}.
*/
STREAM,
/**
* Type of {@link YamlSequence}.
*/
SEQUENCE
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy