Uses of Class
org.codehaus.staxmate.out.SMOutputContainer
-
Packages that use SMOutputContainer Package Description org.codehaus.staxmate.out Package contains classes for output functionality. -
-
Uses of SMOutputContainer in org.codehaus.staxmate.out
Subclasses of SMOutputContainer in org.codehaus.staxmate.out Modifier and Type Class Description classSMBufferedElementBuffered 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.classSMBufferedFragmentBuffered fragment; starts its life buffered, so that its content are not automatically written to the underlying stream, but only when buffered instance is released.classSMOutputDocumentOutput class that models a full XML document, with xml declaration.classSMOutputElementOutput class that models an outputtable XML element.classSMRootFragmentConcrete non-buffered fragment (== container) class used as the root level output container.Fields in org.codehaus.staxmate.out declared as SMOutputContainer Modifier and Type Field Description protected SMOutputContainerSMOutputContainer. _parentParent of this container; null for root-level entities, as well as not-yet-linked buffered containers.Methods in org.codehaus.staxmate.out with type parameters of type SMOutputContainer Modifier and Type Method Description <T extends SMOutputContainer>
TSMOutputContainer. addValue(byte[] value)Typed output method for outputting binary value (encoded using default Base64 encoding variant) as (textual) xml content.<T extends SMOutputContainer>
TSMOutputContainer. addValue(byte[] value, int offset, int length)Typed output method for outputting binary value (encoded using default Base64 encoding variant) as (textual) xml content.Methods in org.codehaus.staxmate.out that return SMOutputContainer Modifier and Type Method Description SMOutputContainerSMOutputContainer. getParent()Method to use for getting parent of this container, which is null for root-level containers (document, fragment).Methods in org.codehaus.staxmate.out with parameters of type SMOutputContainer Modifier and Type Method Description voidSMBufferable. linkParent(SMOutputContainer parent, boolean blocked)Method called by a container when bufferable item is linked as its child.voidSMBufferedFragment. linkParent(SMOutputContainer parent, boolean blocked)voidSMOutputElement. linkParent(SMOutputContainer parent, boolean blocked)
-