com.obs.services.internal.xml.ObsSimpleXMLBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esdk-obs-java-bundle Show documentation
Show all versions of esdk-obs-java-bundle Show documentation
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("").append(tag).append(">");
}
public StringBuilder getXmlBuilder() {
return xmlBuilder;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy