Node |
XPathEngine.create(Field xmlField,
Node element,
Object value,
Field lastUpdated,
DocumentPreservationPolicy docPresPolicy,
CoreAbstractSession session) |
Create the node path specified by xpathString under element
and initialize the leaf node with value.
|
Node |
XPathEngine.create(Field xmlField,
Node element,
CoreAbstractSession session) |
Create the node path specified by xpathString under element.
|
protected DESCRIPTOR |
XMLMarshaller.getDescriptor(Class<?> clazz,
ABSTRACT_SESSION session) |
INTERNAL:
Return the descriptor for the root object.
|
DESCRIPTOR |
XMLMarshaller.getDescriptor(Object object) |
INTERNAL:
Return the descriptor for the root object.
|
protected DESCRIPTOR |
XMLMarshaller.getDescriptor(Object object,
ABSTRACT_SESSION session) |
INTERNAL:
Return the descriptor for the root object.
|
protected DESCRIPTOR |
XMLMarshaller.getDescriptor(Root object) |
|
protected DESCRIPTOR |
XMLMarshaller.getDescriptor(Root object,
ABSTRACT_SESSION session) |
|
void |
XMLMarshaller.marshal(Object object,
OutputStream outputStream) |
PUBLIC:
Convert the given object to XML and update the given outputStream with that XML Document
|
void |
XMLMarshaller.marshal(Object object,
Writer writer) |
PUBLIC:
Convert the given object to XML and update the given writer with that XML Document
|
void |
XMLMarshaller.marshal(Object object,
Result result) |
PUBLIC:
Convert the given object to XML and update the given result with that XML Document
|
void |
XMLMarshaller.marshal(Object object,
Node node) |
PUBLIC:
|
void |
XMLMarshaller.marshal(Object object,
ContentHandler contentHandler) |
PUBLIC:
Convert the given object to XML and update the given contentHandler with that XML Document
|
void |
XMLMarshaller.marshal(Object object,
ContentHandler contentHandler,
LexicalHandler lexicalHandler) |
PUBLIC:
Convert the given object to XML and update the given contentHandler with that XML Document
|
Document |
XMLMarshaller.objectToXML(Object object) |
PUBLIC:
Convert the given object to an XML Document
|
protected Document |
XMLMarshaller.objectToXML(Object object,
DESCRIPTOR descriptor,
boolean isXMLRoot) |
INTERNAL:
Convert the given object to an XML Document
|
protected Node |
XMLMarshaller.objectToXMLNode(Object object,
ABSTRACT_SESSION session,
DESCRIPTOR descriptor,
boolean isXMLRoot) |
INTERNAL:
Like ObjectToXML but is may also return a document fragment instead of a document in the
case of a non-root object.
|
protected Node |
XMLMarshaller.objectToXMLNode(Object object,
Node rootNode,
ABSTRACT_SESSION session,
DESCRIPTOR descriptor,
boolean isXMLRoot) |
|
NodeList |
XPathEngine.remove(Field xmlField,
Node element) |
Remove a node.
|
NodeList |
XPathEngine.remove(Field xmlField,
Node element,
boolean forceRemove) |
Remove a node.
|
NodeList |
XPathEngine.replaceCollection(Field xmlField,
Node parent,
Collection values,
CoreAbstractSession session) |
|
NodeList |
XPathEngine.replaceValue(Field xmlField,
Node parent,
Object value,
CoreAbstractSession session) |
Replace the value of the nodes matching xpathString with value.
|
List<XMLEntry> |
UnmarshalXPathEngine.selectNodes(Node contextNode,
List<XML_FIELD> xmlFields,
XMLNamespaceResolver xmlNamespaceResolver) |
|
NodeList |
UnmarshalXPathEngine.selectNodes(Node contextNode,
XML_FIELD xmlField,
XMLNamespaceResolver xmlNamespaceResolver) |
Execute the XPath statement relative to the context node.
|
NodeList |
UnmarshalXPathEngine.selectNodes(Node contextNode,
XML_FIELD xmlField,
XMLNamespaceResolver xmlNamespaceResolver,
AbstractNullPolicy nullPolicy) |
|
NodeList |
UnmarshalXPathEngine.selectNodes(Node contextNode,
XML_FIELD xmlField,
XMLNamespaceResolver xmlNamespaceResolver,
AbstractNullPolicy nullPolicy,
boolean omitText) |
|
Object |
UnmarshalXPathEngine.selectSingleNode(Node contextNode,
XML_FIELD xmlField,
XMLNamespaceResolver xmlNamespaceResolver) |
|
Object |
UnmarshalXPathEngine.selectSingleNode(Node contextNode,
XML_FIELD xmlField,
XMLNamespaceResolver xmlNamespaceResolver,
boolean checkForXsiNil) |
Execute the XPath statement relative to the context node.
|
Object |
XMLUnmarshaller.unmarshal(File file) |
PUBLIC:
Read and parse the XML document from the file and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(File file,
Class<?> clazz) |
PUBLIC:
Read and parse the XML document from the file and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(InputStream inputStream) |
PUBLIC:
Read and parse the XML document from the inputStream and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(InputStream inputStream,
Class<?> clazz) |
PUBLIC:
Read and parse the XML document from the inputStream and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(Reader reader) |
PUBLIC:
Read and parse the XML document from the reader and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(Reader reader,
Class<?> clazz) |
PUBLIC:
Read and parse the XML document from the reader and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(URL url) |
PUBLIC:
Read and parse the XML document from the url and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(URL url,
Class<?> clazz) |
PUBLIC:
Read and parse the XML document from the url and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(Source source) |
PUBLIC:
Read and parse the XML document from the source and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(Source source,
Class<?> clazz) |
PUBLIC:
Read and parse the XML document from the source and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(Node node) |
PUBLIC:
Map the XML node into an object.
|
Object |
XMLUnmarshaller.unmarshal(Node node,
Class<?> clazz) |
PUBLIC:
Map the XML node into an object.
|
Object |
XMLUnmarshaller.unmarshal(InputSource inputSource) |
PUBLIC:
Read and parse the XML document from the inputSource and map the XML data into an object.
|
Object |
XMLUnmarshaller.unmarshal(InputSource inputSource,
Class<?> clazz) |
PUBLIC:
Read and parse the XML document from the inputSource and map the XML data into an object.
|