public class CDataBookmark extends XmlCursor.XmlBookmark
When XmlOption UseCDataBookmarks is setted on parse methods, the loader will set these CDataBookmarks in the store on the respective TEXT fields that were represented as CDATA.
Users can modify the 'look' of TEXT fields, by annotating them with this bookmark, or remove the bookmark.
Additionaly if setted on save methods, the output will look for these bookmarks and will output the text as CDATA. Note: The SaveCDataEntityCountThreshold and SaveCDataLengthThreshold options and their default values still apply.
Note: Due to the store representation, a CDATA will not be recognized
if it is imediately after non CDATA text and all text following it will
be considered CDATA.
Example:
<a><![CDATA[cdata text]]></a> - is considered as: <a><![CDATA[cdata text]]></a> <b><![CDATA[cdata text]]> regular text</b> - is considered as: <b><![CDATA[cdata text regular text]]></b> <c>text <![CDATA[cdata text]]></c> - is considered as: <c>text cdata text</c>
Modifier and Type | Field and Description |
---|---|
static CDataBookmark |
CDATA_BOOKMARK
The actual bookmark object representing CData.
Users must use this bookmark in addition to UseCDataBookmarks option to make use of CDATA representation in XML text. |
_currentMark, _ref
Constructor and Description |
---|
CDataBookmark() |
public static final CDataBookmark CDATA_BOOKMARK