All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.obs.services.internal.xml.ObsSimpleXMLBuilder Maven / Gradle / Ivy

Go to download

The HuaweiCloud OBS Bundle SDK for Java used for accessing Object Storage Service, this SDK bundle includes third-party libraries and relocated to different namespaces

The newest version!
package com.obs.services.internal.xml;

public class ObsSimpleXMLBuilder {
    private final StringBuilder xmlBuilder = new StringBuilder();

    public void startElement(String tag) {
        xmlBuilder.append("<").append(tag).append(">");
    }

    public void append(String value) {
        xmlBuilder.append(value);
    }
    public void append(int value) {
        xmlBuilder.append(value);
    }

    public void endElement(String tag) {
        xmlBuilder.append("");
    }

    public StringBuilder getXmlBuilder() {
        return xmlBuilder;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy