Package | Description |
---|---|
org.codehaus.staxmate.out |
Package contains classes for output functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
SMBufferedElement
Buffered version of
SMOutputElement ; 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. |
class |
SMBufferedFragment
Buffered fragment; starts its life buffered,
so that its content are not automatically written to the underlying
stream, but only when buffered instance is released.
|
class |
SMOutputDocument
Output class that models a full XML document, with xml declaration.
|
class |
SMOutputElement
Output class that models an outputtable XML element.
|
class |
SMRootFragment
Concrete non-buffered fragment (== container) class used as the root
level output container.
|
Modifier and Type | Field and Description |
---|---|
protected SMOutputContainer |
SMOutputContainer._parent
Parent of this container; null for root-level entities, as well
as not-yet-linked buffered containers.
|
Modifier and Type | Method and Description |
---|---|
<T extends SMOutputContainer> |
SMOutputContainer.addValue(byte[] value)
Typed output method for outputting
binary value (encoded using default Base64 encoding variant)
as (textual) xml content.
|
<T extends SMOutputContainer> |
SMOutputContainer.addValue(byte[] value,
int offset,
int length)
Typed output method for outputting
binary value (encoded using default Base64 encoding variant)
as (textual) xml content.
|
Modifier and Type | Method and Description |
---|---|
SMOutputContainer |
SMOutputContainer.getParent()
Method to use for getting parent of this container, which
is null for root-level containers (document, fragment).
|
Modifier and Type | Method and Description |
---|---|
void |
SMOutputElement.linkParent(SMOutputContainer parent,
boolean blocked) |
void |
SMBufferedFragment.linkParent(SMOutputContainer parent,
boolean blocked) |
void |
SMBufferable.linkParent(SMOutputContainer parent,
boolean blocked)
Method called by a container when bufferable item is linked as its
child.
|
Copyright © 2013 FasterXML. All Rights Reserved.