public interface XMLable
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_BUFFER_SIZE
Deprecated.
use the default StringBuilder constructor or one adjusted directly to the known size
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toXML()
Generates an XML representation of this object (including all
child objects).
|
default void |
toXML(java.lang.StringBuffer buffer)
Appends an XML representation of this object (including all
child objects) to the given buffer.
|
default void |
toXML(java.lang.StringBuilder buffer)
Appends an XML representation of this object (including all
child objects) to the given buffer.
|
@Deprecated static final int DEFAULT_BUFFER_SIZE
java.lang.String toXML()
StringBuilder
and call
toXML( StringBuilder )
on it.default void toXML(java.lang.StringBuilder buffer)
buffer
- The buffer on which to append the XML representation.default void toXML(java.lang.StringBuffer buffer)
buffer
- The buffer on which to append the XML representation.Copyright © 2003-2024 Appian Corporation. All Rights Reserved.