
org.fugerit.java.doc.yaml.parse.DocYamlToXml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fj-doc-base-yaml Show documentation
Show all versions of fj-doc-base-yaml Show documentation
Module for producting documents from yaml instead of xml
package org.fugerit.java.doc.yaml.parse;
import org.fugerit.java.doc.json.parse.DocJsonToXml;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
public class DocYamlToXml extends DocJsonToXml {
public DocYamlToXml() {
super( new ObjectMapper( new YAMLFactory() ) );
}
public DocYamlToXml(ObjectMapper mapper) {
super(mapper);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy