Uses of Class
org.codehaus.staxmate.out.SMOutputElement
-
Packages that use SMOutputElement Package Description org.codehaus.staxmate.out Package contains classes for output functionality. -
-
Uses of SMOutputElement in org.codehaus.staxmate.out
Subclasses of SMOutputElement in org.codehaus.staxmate.out Modifier and Type Class Description class
SMBufferedElement
Buffered version ofSMOutputElement
; starts its life buffered, so that it, its attributes and content are not automatically written to the underlying stream, but only when buffered instance is released.Methods in org.codehaus.staxmate.out that return SMOutputElement Modifier and Type Method Description SMOutputElement
SMOutputElement. addAttribute(java.lang.String localName, byte[] value)
Typed Access write method to use for adding attribute with base64-encoded binary value using appropriate default variant (MIME, no linefeeds)SMOutputElement
SMOutputElement. addAttribute(SMNamespace ns, java.lang.String localName, byte[] value)
Typed Access write method to use for adding attribute with base64-encoded binary value using appropriate default variant (MIME, no linefeeds)SMOutputElement
SMOutputContainer. addElement(java.lang.String localName)
Convenience method (equivalent toaddElement(null, localName);
) for adding an element that is not in a namespace.SMOutputElement
SMOutputContainer. addElement(SMNamespace ns, java.lang.String localName)
Method for adding specified element as a child of this container.SMOutputElement
SMOutputContainer. addElementWithCharacters(SMNamespace ns, java.lang.String localName, java.lang.String text)
Convenience method for adding a child element (that has no attributes) to this container, and adding specified text as child of that child element.
-