Java javax.xml.soap SOAPPart fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.soap SOAPPart fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.soap SOAPPart.

The text is from its open source code.

Subclass

javax.xml.soap.SOAPPart has subclasses.
Click this link to see all its subclasses.

Method

NodeappendChild(Node newChild)
Adds the node newChild to the end of the list of children of this node.
CDATASectioncreateCDATASection(String data)
Creates a CDATASection node whose value is the specified string.
ElementcreateElement(String tagName)
Creates an element of the type specified.
ElementcreateElementNS(String namespaceURI, String qualifiedName)
Creates an element of the given qualified name and namespace URI.
SourcegetContent()
Returns the content of the SOAPEnvelope as a JAXP Source object.
ElementgetDocumentElement()
This is a convenience attribute that allows direct access to the child node that is the document element of the document.
NodeListgetElementsByTagNameNS(String namespaceURI, String localName)
Returns a NodeList of all the Elements with a given local name and namespace URI in document order.
SOAPEnvelopegetEnvelope()
Gets the SOAPEnvelope object associated with this SOAPPart object.
SOAPElementgetParentElement()
Returns the parent element of this Node object.
StringgetValue()
Returns the value of this node if this is a Text node or the value of the immediate child of this node otherwise.
NodeimportNode(Node importedNode, boolean deep)
Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node.
voidsetContent(Source source)
Sets the content of the SOAPEnvelope object with the data from the given Source object.
voidsetParentElement(SOAPElement parent)
Sets the parent of this Node object to the given SOAPElement object.
voidsetValue(String value)
If this is a Text node then this method will set its value, otherwise it sets the value of the immediate (Text) child of this node.