Package org.yaml.snakeyaml.DumperOptions

Examples of org.yaml.snakeyaml.DumperOptions.FlowStyle


     *            DumperOptions is used.
     *
     * @return YAML String
     */
    public String dumpAs(Object data, Tag rootTag, FlowStyle flowStyle) {
        FlowStyle oldStyle = representer.getDefaultFlowStyle();
        if (flowStyle != null) {
            representer.setDefaultFlowStyle(flowStyle);
        }
        List<Object> list = new ArrayList<Object>(1);
        list.add(data);
View Full Code Here

TOP

Related Classes of org.yaml.snakeyaml.DumperOptions.FlowStyle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.