Add XmlStringBuilder.emptyElement(Enum)

This commit is contained in:
Florian Schmaus 2014-09-12 11:03:12 +02:00
parent c7a162f316
commit fca884d76b
1 changed files with 4 additions and 0 deletions

View File

@ -235,6 +235,10 @@ public class XmlStringBuilder implements Appendable, CharSequence {
return this;
}
public XmlStringBuilder emptyElement(Enum<?> element) {
return emptyElement(element.name());
}
public XmlStringBuilder emptyElement(String element) {
halfOpenElement(element);
return closeEmptyElement();